Great Circle Distance Calculator

Calculate the great-circle distance and initial bearing between two latitude/longitude points using the haversine formula

Frequently Asked Questions

What is the haversine formula?

a = sin²(Δφ/2) + cos φ₁ × cos φ₂ × sin²(Δλ/2); c = 2 × atan2(√a, √(1−a)); d = R × c, where R = 3,440 NM (or 6,371 km, 3,959 sm) for Earth's mean radius.

A worked example?

KJFK (40.64° N, 73.78° W) to EGLL (51.47° N, 0.46° W): great-circle distance ≈ 2,997 NM (5,551 km). The rhumb-line (constant heading) route would be ~150 NM longer.

How is initial bearing calculated?

θ = atan2(sin Δλ × cos φ₂, cos φ₁ × sin φ₂ − sin φ₁ × cos φ₂ × cos Δλ), normalized 0–360°. The initial heading toward EGLL from KJFK is ≈ 051° (northeast), curving south as you near London.

Why does the great-circle curve north on a Mercator map?

The shortest path on a sphere lies along a great circle. Mercator flattens latitude lines, so a great circle between two mid-latitude points appears as a curve north of the straight rhumb line. Educational only - for navigation, use certified flight planning software.

Aviation & Marine Disclaimer: Educational only. Not for flight or navigation operations.

This calculator is for educational and informational purposes only and is not a substitute for official flight or navigation planning. Always use current performance charts, an approved POH/AFM, certified navigation tools, and follow all applicable FAA, ICAO, USCG, and other regulatory guidance. Verify all results independently before operating any aircraft or vessel.