geography calculators

Great Circle Distance Calculator

Finds the shortest path between two points on Earth's curved surface using GPS coordinates. Essential for aviation route planning, shipping logistics, and geographic distance estimation.

About this calculator

The great-circle distance is the shortest distance between two points on a sphere, measured along the surface rather than through the Earth. It uses the Haversine formula: d = 2R · arcsin(√(sin²(Δlat/2) + cos(lat1) · cos(lat2) · sin²(Δlon/2))), where R = 6,371 km (Earth's mean radius), lat1/lat2 are the latitudes, and Δlat, Δlon are the differences in latitude and longitude in radians. Because Earth is roughly spherical, straight-line (Euclidean) distances are inaccurate for anything beyond a few kilometers. Aircraft and ships follow great-circle routes to minimize fuel and travel time. The formula accounts for Earth's curvature by projecting angular separations onto the sphere's surface.

How to use

Suppose you want the distance from New York (40.71°N, −74.01°W) to London (51.51°N, −0.13°W). Enter lat1 = 40.71, lon1 = −74.01, lat2 = 51.51, lon2 = −0.13. The calculator computes Δlat = 10.80° and Δlon = 73.88°, evaluates the Haversine formula with R = 6,371 km, and returns approximately 5,570 km — matching the known transatlantic flight distance. No manual trigonometry needed; just enter the four coordinates and read the result.

Frequently asked questions

What is the difference between great-circle distance and straight-line distance?

Straight-line (Euclidean) distance passes through the Earth's interior and is physically meaningless for surface travel. Great-circle distance follows the Earth's curved surface and represents the shortest possible path between two points that stays on the globe. For short distances (under ~100 km) the difference is negligible, but for intercontinental distances it can be thousands of kilometers shorter than a flat-map projection suggests. Airlines and ship navigators always optimize for great-circle routes.

Why do long-haul flights appear to curve on a flat map?

Flat maps (especially Mercator projections) distort distances at high latitudes, making great-circle routes look curved. In reality, those arcing paths are the shortest routes on a sphere. A flight from Los Angeles to Tokyo, for example, passes near Alaska because that arc is geometrically shorter than flying due west across the Pacific. The great-circle distance calculator shows you this true shortest path distance.

How accurate is the Haversine formula for calculating Earth distances?

The Haversine formula assumes Earth is a perfect sphere with radius 6,371 km. In reality Earth is an oblate spheroid, slightly flattened at the poles. This introduces an error of up to about 0.5%, or roughly 30 km on a 6,000 km route. For most navigation, logistics, and planning purposes this accuracy is more than sufficient. For geodetic surveying requiring centimeter-level precision, the Vincenty formula or WGS-84 ellipsoid model is preferred.