getGeodesicFinalBearing method

double getGeodesicFinalBearing(
  1. GeoLocation location
)

Calculate the final geodesic bearing 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

@param location the destination location @return the final bearing

Implementation

double getGeodesicFinalBearing(GeoLocation location) {
  return vincentyFormula(location, _FINAL_BEARING);
}