Distance Calculator

Calculate the great circle distance between any two airports.

Calculator
Popular:

How to Use

  1. 1
    Enter two airport codes or city names

    Input IATA three-letter codes or city names for the departure and arrival airports. Coordinates are retrieved from the IATA Airport Codes database with WGS-84 latitude and longitude precision.

  2. 2
    Select distance unit preference

    Choose between nautical miles (the standard unit in aviation per ICAO Annex 5), kilometers, or statute miles for the distance result display.

  3. 3
    Review great-circle and typical route distances

    The tool returns the Haversine great-circle distance and a typical filed route distance that accounts for common airspace restrictions and preferred routings on the selected city pair.

About

The Distance Calculator computes great-circle and typical route distances between any two airports worldwide, using the Haversine formula applied to WGS-84 coordinates from the IATA Airport Codes database. Results are expressed in nautical miles, kilometers, and statute miles, with nautical miles as the primary aviation navigation unit per ICAO Annex 5.

Great-circle distance represents the shortest possible path between two points on a sphere and serves as the theoretical minimum for any flight route. Actual filed distances exceed the great circle by 3–8% on most routes due to ATS route structure, airspace restrictions, and wind optimization. On long-haul transoceanic routes using the NAT Organized Track System or the Pacific Organized Track System (PACOTS), daily track assignments optimize for upper-level wind patterns, meaning the filed route distance changes daily while the great-circle distance remains constant.

Distance calculations underpin most critical aviation planning functions: ETOPS diversion planning, fuel load determination, flight time estimation, range limitation assessment, and en-route alternate airport identification all begin with accurate distance figures. ICAO Doc 9613 (Performance-Based Navigation Manual) and Doc 8168 (PANS-OPS) reference distance-based criteria throughout their procedure design specifications, reflecting the central role of accurate distance measurement in aviation operations.

FAQ

Why do airlines use nautical miles rather than kilometers for distances?
Nautical miles are derived from the circumference of the Earth: one nautical mile equals one arc-minute of latitude (1,852 meters), making navigation calculations on a spherical Earth more intuitive when working with latitude and longitude coordinates. ICAO Annex 5 designates the nautical mile as the standard unit for air navigation, and virtually all aviation charts, flight management computers, and ATC procedures use nautical miles and knots. The international standard for conversion is 1 nautical mile = 1.852 kilometers exactly, as defined by the International Hydrographic Organization.
What is the Haversine formula and how accurate is it?
The Haversine formula calculates the shorter arc of a great circle on a sphere: d = 2r × arcsin(√(sin²(Δφ/2) + cos(φ₁)cos(φ₂)sin²(Δλ/2))), where φ and λ are latitude and longitude in radians and r is Earth's mean radius of approximately 6,371 km. The formula assumes a perfect sphere, introducing an error of up to 0.5% near the poles where the Earth's oblate spheroid shape deviates most from spherical. For aviation route planning purposes this accuracy is sufficient, though precise geodetic calculations use the Vincenty formula applied to the WGS-84 ellipsoid (semi-major axis 6,378.137 km, flattening 1/298.257).
How does the great-circle distance relate to the actual filed route distance?
Filed flight plan routes deviate from the theoretical great circle due to airspace restrictions, published Air Traffic Service routes (ATS routes identified by designator codes such as N874 or L888), mandatory reporting points, restricted and prohibited areas under ICAO Annex 2, and wind optimization routing on long-haul flights. On typical mid-range routes the filed distance is 3–8% longer than the great-circle distance. On transatlantic routes using the NAT Organized Track System, the actual track distance varies daily based on wind forecasts, with eastbound tracks significantly shorter due to jetstream assistance.
What is the relationship between route distance and ETOPS authorization?
Extended-range Twin-engine Operational Performance Standards (ETOPS), governed by ICAO Annex 6 Part I and implemented nationally by FAA AC 120-42B and EASA AMC 20-6, allow twin-engine aircraft to operate routes where a diversion airport is more than 60 minutes flying time away on one engine. ETOPS-180 authorization permits operations up to 180 minutes diversion time, enabling twin-engine aircraft to fly transoceanic routes previously restricted to three- and four-engine jets. Route distance calculations are essential for ETOPS planning: operators must identify ETOPS adequate airports within the authorized diversion radius for every point along the route.
Can the calculator handle routes that cross the antimeridian?
Yes. The Haversine formula handles antimeridian crossing correctly by computing the shorter great-circle arc regardless of whether the route crosses the 180° meridian. Routes from North America to Asia-Pacific, such as LAX–SYD or SFO–NRT, cross the antimeridian over the North Pacific, and naive east-to-west longitude subtraction would yield an incorrect distance. The formula resolves this by computing the angular difference modulo 2π before applying the spherical law of cosines, ensuring correct results for any airport pair including polar routes over the North Pole.