Great-Circle Aviation Route Calculator

Calculate great-circle distance, initial track, and waypoints between airports

Ad placeholder (leaderboard)

The shortest route between two airports follows a great circle, the curved path that looks longer on a flat map but is actually the most direct. This calculator returns the great-circle distance, the initial true course, and a set of en-route waypoints for any two coordinates.

How it works

Distance comes from the haversine formula and the course from the standard initial-bearing formula:

a = sin²(Δφ/2) + cos φ1 · cos φ2 · sin²(Δλ/2)
distance = 2R · atan2(√a, √(1−a))        R = 3440.065 nm
course   = atan2( sinΔλ·cosφ2 ,
                  cosφ1·sinφ2 − sinφ1·cosφ2·cosΔλ )

Waypoints are placed by spherical interpolation, so each one sits on the true great circle at an equal fraction of the total distance.

Example and notes

From London Heathrow (51.4775, −0.4614) to New York JFK (40.6413, −73.7781) the great-circle distance is about 3,000 nautical miles with an initial true course near 288 degrees, even though both airports are at similar latitudes. The course swings noticeably as you cross the Atlantic, which is why the generated waypoints matter: re-check the course at each one, and apply the local magnetic variation to fly the magnetic heading.

Ad placeholder (rectangle)