Haversine Distance

- d=2r×arcsin(sin2(2φ2−φ1)+cos(φ1)cos(φ2)sin2(2λ2−λ1))
- Haversine distance is the distance between two points on a sphere given their longitudes and latitudes
- The main difference is that no straight line is possible since the assumption here is that the two points are on a sphere.
- ssumed the points lie on a sphere
- As you might have expected, Haversine distance is often used in navigation
- calculate the distance between two countries when flying between them
- Note that it is much less suited if the distances by themselves are already not that large. The curvature will not have that large of an impact.