Great-circle distance
The great-circle or orthodromic distance is the shortest distance between any two points on the surface of a sphere measured along a path on the surface of the sphere (as opposed to going through the sphere's interior). Because spherical geometry is different from ordinary Euclidean geometry, the equations for distance take on a different form. The distance between two points in Euclidean space is the length of a straight line from one point to the other. On the sphere, however, there are no straight lines. In non-Euclidean geometry, straight lines are replaced with geodesics. Geodesics on the sphere are the great circles (circles on the sphere whose centers are coincident with the center of the sphere).
Through any two points on a sphere which are not directly opposite each other, there is a unique great circle. The two points separate the great circle into two arcs. The length of the shorter arc is the great-circle distance between the points. A great circle endowed with such a distance is the Riemannian circle.
Between two points which are directly opposite each other, called antipodal points, there are infinitely many great circles, but all great circle arcs between antipodal points have the same length, i.e. half the circumference of the circle, or
, where r is the radius of the sphere.
Because the Earth is nearly spherical (see Earth radius) equations for great-circle distance can be used to roughly calculate the shortest distance between points on the surface of the Earth (as the crow flies), and so have applications in navigation.
Contents |
Formulas [edit]
Let
be the geographical latitude and longitude of two points (a base "standpoint" and the destination "forepoint"), respectively, and
their absolute differences; then
, the central angle between them, is given by the spherical law of cosines:
The distance d, i.e. the arc length, for a sphere of radius r and
given in
This arccosine formula above can have large rounding errors if the distance is small (if the two points are a kilometer apart the cosine of the central angle comes out 0.99999999). An equation known as the haversine formula is numerically better-conditioned for small distances:[1]
Historically, the use of this formula was simplified by the availability of tables for the haversine function: hav(θ) = sin2 (θ/2).
Although this formula is accurate for most distances on a sphere, it too suffers from rounding errors for the special (and somewhat unusual) case of antipodal points (on opposite ends of the sphere). A more complicated formula that is accurate for all distances is the following special case (a sphere, which is an ellipsoid with equal major and minor axes) of the Vincenty formula (which more generally is a method to compute distances on ellipsoids):[2]
When programming a computer, one should use the atan2() function rather than the ordinary arctangent function (atan()), in order to simplify handling of the case where the denominator is zero, and to compute
unambiguously in all quadrants. Also, make sure that all latitudes and longitudes are in radians (rather than degrees) if that is what your programming language's sin(), cos() and atan2() functions expect (1 radian = 180 / π degrees, 1 degree = π / 180 radians).
Vector version [edit]
Another representation of similar formulas, but using n-vector instead of latitude/longitude to describe the positions, is found by means of 3D vector algebra, i.e. utilizing the dot product, cross product, or a combination:[3]
where
and
are the n-vectors representing the two positions s and f. Similarly to the equations above based on latitude and longitude, the expression based on arctan is the only one that is well-conditioned for all angles. If the two positions are originally given as latitudes and longitudes, a conversion to n-vectors must first be performed.
From chord length [edit]
A line through three-dimensional space between points of interest on a spherical Earth is the chord of the great circle between the points. The central angle between the two points can be determined from the chord length. The great circle distance is proportional to the central angle.
The great circle chord length,
, may be calculated as follows for the corresponding unit sphere, by means of Cartesian subtraction:[4]
The central angle is:
The great circle distance is:
Spherical cosine for sides derivation [edit]
By using Cartesian products rather than differences, the origin of the spherical cosine for sides becomes apparent:

Radius for spherical Earth [edit]
The shape of the Earth closely resembles a flattened sphere (a spheroid) with equatorial radius
of 6,378.137 km; distance
from the center of the spheroid to each pole is 6356.752 km. When calculating the length of a short north-south line at the equator, the sphere that best approximates that part of the spheroid has a radius of
(which equals the meridian's semi-latus rectum), or 6,335.439 km, while the spheroid at the poles is best approximated by a sphere of radius
, or 6,399.594 km, a 1% difference. So as long as we're assuming a spherical Earth, any single formula for distance on the Earth is only guaranteed correct within 0.5% (though we can do better if our formula is only intended to apply to a limited area). There are different approximations used as a radius for a non-spherical body such as Earth:
- the average geocentric radius (≈(a+b)/2) or (ab).5;
- the equatorial radius (a);
- the volume and total surface area radius (≈(2a+b)/3 or (a2b)1/3);[5][6];
- the average great circle circumference (≈(3a+b)/4 or (a3b).5).[7]
McCaw[8] recommends just using the volume/surface area based approximation (for Earth, approximately 6371.01 km).
Worked example [edit]
For an example of the formula in practice, take the latitude and longitude of two airports:
- Nashville International Airport (BNA) in Nashville, TN, USA: N 36°7.2', W 86°40.2'
- Los Angeles International Airport (LAX) in Los Angeles, CA, USA: N 33°56.4', W 118°24.0'
First convert the co-ordinates to decimal degrees
- BNA:

- LAX:

Plug these values into the spherical law of cosines: 
comes out to be 25.958 degrees, or 0.45306 radians, and the great-circle distance is the assumed radius times that angle:

So assuming a spherical earth, distance between LAX and BNA is about 2887 km or 1794 statute miles (× 0.621371) or 1559 nautical miles (× 0.539957). Geodesic distance between the given coordinates on the GRS 80/WGS 84 spheroid is 2892.777 km.
See also [edit]
- Air navigation
- Central angle
- Circumnavigation
- Flight planning
- Geodesy
- Geodetic system
- Geographical distance
- Great-circle navigation
- Haversine formula
- Meridian arc
- Qibla
- Spherical Earth
- Spherical geometry
- Spherical trigonometry
- Vincenty's formulae
References [edit]
- ^ R.W. Sinnott, "Virtues of the Haversine", Sky and Telescope, vol. 68, no. 2, 1984, p. 159
- ^ Vincenty, Thaddeus (1975-04-01). "Direct and Inverse Solutions of Geodesics on the Ellipsoid with Application of Nested Equations" (PDF). Survey Review (Kingston Road, Tolworth, Surrey: Directorate of Overseas Surveys) 23 (176): 88–93. Retrieved 2008-07-21.
- ^ Gade, Kenneth (2010). "A non-singular horizontal position representation" (PDF). The Journal of Navigation (Cambridge University Press) 63 (3): 395–417. doi:10.1017/S0373463309990415.
- ^ http://mathcentral.uregina.ca/QQ/database/QQ.09.09/h/dave2.html
- ^ [1]
- ^ [2]
- ^ [3]
- ^ McCaw, G. T. (1932). "Long lines on the Earth". Empire Survey Review 1 (6): 259–263.
External links [edit]
- Haversine formula in JavaScript Haversine and other formulae for calculating distances, bearings, etc.
- Distance Between Two Cities Site uses Haversine Formulae and integrates Road distances too









