public static double Azimuth(this GeoPoint a, GeoPoint b)
 {
     return(GeoMath.Azimuth(a.Latitude, a.Longitude, b.Latitude, b.Longitude));
 }
Example #2
0
 public double AngleBetween(GeoPoint other)
 {
     return(GeoMath.Azimuth(this, other));
 }