🗺️

Distance Calculator (Great-Circle, Haversine)

Great-circle distance from coordinates or US city presets, with flight and drive time estimates.

LIFESTYLE

Calculate the great-circle (as-the-crow-flies) distance between two points on Earth from latitude and longitude using the Haversine formula. Outputs miles, kilometers, nautical miles, initial bearing, and estimated flight and drive time. Pick from common US city presets or enter custom coordinates.

The Haversine formula treats Earth as a sphere with radius 6,371 km (3,959 mi), accurate within 0.5% for typical distances. Great-circle is the shortest path on a sphere - it appears curved on a Mercator map but is mathematically the most direct. Driving distance is typically 15-30% longer because roads follow terrain. Coordinates are decimal degrees: north and east positive, south and west negative. NYC (40.71, -74.01), LA (34.05, -118.24), Tokyo (35.68, 139.65).

Disclaimer: Haversine is accurate to ~0.5% on a sphere. Use Vincenty or WGS84 ellipsoid math for survey-grade work. Drive-time estimate assumes 60 mph average; actual time depends on traffic and route.
Loading calculator…
Advertisement

Frequently Asked Questions

What is the difference between great-circle and driving distance?
Great-circle (also called "as the crow flies") is the shortest distance between two points on the surface of a sphere - what a plane would fly if there were no winds, no air-traffic-control routes, and no airspace restrictions. Driving distance follows roads, which are 15-30% longer than great-circle on average and can be 50%+ longer in mountainous terrain or where there is no direct highway between two cities.
How do I calculate distance between two cities by hand?
Use the Haversine formula: a = sin²(Δφ/2) + cos(φ₁)·cos(φ₂)·sin²(Δλ/2), then distance = 2R·atan2(√a, √(1-a)) where R = 3,959 mi (Earth radius). Δφ is the difference in latitudes in radians; Δλ is the difference in longitudes. For NYC (40.71°N, 74.01°W) to LA (34.05°N, 118.24°W): ~2,445 miles. Doing it by hand is tedious - this calculator does it instantly.
How long does a flight from New York to Los Angeles take?
Great-circle distance NYC → LA is about 2,445 miles. Commercial jets cruise at ~500 mph, so the air time is about 4.9 hours. Add 30 minutes for taxi, takeoff, and landing, and the total block time is roughly 5.5 hours. The eastbound return is actually faster (4.5-5 hours) because of jet-stream tailwinds.
Sponsored