getGeodesicDistance method

double getGeodesicDistance(
  1. GeoLocation location
)

Calculate geodesic distance in Meters between this Object and a second Object passed to this method using Thaddeus Vincenty's inverse formula See T Vincenty, "Direct and Inverse Solutions of Geodesics on the Ellipsoid with application of nested equations", Survey Review, vol XXII no 176, 1975

@see #vincentyFormula(GeoLocation, int) @param location the destination location @return the geodesic distance in Meters

Implementation

double getGeodesicDistance(GeoLocation location) {
  return vincentyFormula(location, _DISTANCE);
}