Flight Distance Calculator
Measuring Distance the Way Aircraft Actually Fly It
A straight line on a flat map is rarely the path an aircraft takes between two airports. Because the Earth is a sphere, the shortest route between any two points follows a curved path along a great circle — the same principle that makes a polar routing from New York to Tokyo shorter than a line drawn straight across a Mercator map would suggest. This calculator reproduces that geometry directly, converting two sets of coordinates into the true shortest-path distance a flight crew, dispatcher, or navigation system would actually plan around.
The Formula: Haversine Great-Circle Distance
The haversine formula is the standard method for computing great-circle distance from latitude and longitude, and it's what powers this calculator:
c = 2 × atan2(√a, √(1−a))
Distance = R × c, where R = 3,440.065 nautical miles (mean Earth radius)
The result converts automatically into nautical miles, kilometers, and statute miles, and if a ground speed is supplied, the calculator also derives estimated flight time — distance divided by speed, expressed in hours and minutes.
Where This Calculation Matters
Great-circle distance underpins far more than curiosity about how far apart two cities are. It's the basis for:
- Flight planning and fuel calculations — dispatchers use great-circle routes as the baseline distance before adding airway routing, wind correction, and reserves.
- Charter and private aviation quoting — operators estimate block time and cost from the direct-line distance between departure and destination.
- Range analysis — determining whether a given aircraft can complete a city pair non-stop, or whether a technical fuel stop is required.
- Great-circle mapping — understanding why polar and trans-oceanic routes curve the way they do on a globe versus a flat projection.
Because the haversine method accounts for the Earth's curvature directly from coordinates, it stays accurate at any distance — short domestic hops and intercontinental crossings alike — which is why it's the standard behind most flight-planning and mapping software.
Reference: Great-Circle Distances Between Major Hubs
| Route | Distance (nm) | Distance (km) |
|---|---|---|
| New York (JFK) – London (LHR) | 2,999 | 5,555 |
| Los Angeles (LAX) – Tokyo (HND) | 4,779 | 8,850 |
| Dubai (DXB) – Singapore (SIN) | 3,318 | 6,146 |
| Sydney (SYD) – Los Angeles (LAX) | 6,478 | 12,000 |
| Paris (CDG) – New York (JFK) | 3,145 | 5,825 |
How to Use This Calculator
- Enter the latitude and longitude of the departure point. Coordinates can be found on any airport's official chart or a mapping service — latitude ranges from −90° to 90°, longitude from −180° to 180°.
- Enter the latitude and longitude of the destination point in the same format.
- Optionally, enter an expected ground speed in knots to have the calculator estimate flight time alongside distance.
- Select Calculate to see the distance in nautical miles, kilometers, and statute miles, along with the full haversine working.
Related Calculations
Once you know the distance for a route, two calculators extend the analysis naturally: use the Aircraft Fuel Burn Calculator to estimate how much fuel that distance will consume, and the Fuel Reserve Calculator to add the regulatory reserve on top of trip fuel.