Great Circle Distance Calculator

Determine the shortest distance between two points on the Earth's surface using geographic coordinates.

Enter the latitude and longitude for two points to compute the great-circle distance, the most direct route across a sphere.

Point 1 (Origin)

Point 2 (Destination)

Practical Examples

Click on any example to load its coordinates into the calculator.

New York to London

great-circle

Calculate the flight distance between JFK International Airport and Heathrow Airport.

P1: (40.7128, -74.0060)

P2: (51.5074, -0.1278)

Sydney to Tokyo

great-circle

Determine the direct air travel distance between two major Asia-Pacific cities.

P1: (-33.8688, 151.2093)

P2: (35.6895, 139.6917)

Dubai to Cape Town

great-circle

Find the shipping or flight route distance between the UAE and South Africa.

P1: (25.276987, 55.296249)

P2: (-33.9249, 18.4241)

Across the Equator: Quito to Singapore

great-circle

Calculate a long-haul distance crossing the equator and multiple continents.

P1: (-0.1807, -78.4678)

P2: (1.3521, 103.8198)

Other Titles
Understanding the Great Circle: A Comprehensive Guide
Master the principles of spherical geometry to find the shortest path between two points on a globe, a fundamental concept in global travel and logistics.

What is a Great Circle? The Foundation of Global Navigation

  • Defining a great circle on a sphere
  • Why it represents the shortest path (geodesic)
  • Contrasting great circles with rhumb lines (loxodromes)
A great circle is the largest possible circle that can be drawn around a sphere, with a center and radius that are identical to the sphere's own. When you connect two points along the arc of a great circle, you are tracing the shortest possible distance between them on the curved surface. This path is also known as a geodesic.
This concept is counterintuitive when looking at flat 2D maps, which distort the Earth's spherical nature. For instance, a flight path from New York to Madrid appears as a curve arcing northwards over the Atlantic on a map. This isn't a detour; it's the great-circle route, which is shorter than a straight east-west line on the same map. All lines of longitude (meridians) are great circles, but the only line of latitude that is a great circle is the equator.
Great Circle vs. Rhumb Line
It's crucial to distinguish a great circle from a rhumb line (or loxodrome). A rhumb line is a path of constant bearing or direction. While easier to navigate (simply follow a fixed compass heading), it is not the shortest route unless traveling directly along the equator or a meridian. For long distances, the fuel and time savings of following a great-circle route are substantial.

Key Concepts Illustrated

  • Flight Path: A plane from Chicago to Rome flies over the North Atlantic, not straight across Portugal.
  • Shipping Route: A container ship from Panama to Japan follows an arc across the Pacific.
  • Satellite Orbit: Most non-geostationary satellites orbit the Earth along paths that are great circles.

Step-by-Step Guide to Using the Great Circle Calculator

  • Entering coordinate data correctly
  • Choosing the right units for your needs
  • Interpreting the calculated distance
Our calculator simplifies the process of finding the great-circle distance. Follow these steps for an accurate calculation:
Input Guidelines:
  • Point 1 & Point 2 Coordinates: Enter the latitude and longitude for both your starting (Point 1) and ending (Point 2) locations. Coordinates must be in decimal degrees format (e.g., 40.7128).
  • Latitude: Use positive values for the Northern Hemisphere (N) and negative values for the Southern Hemisphere (S). The valid range is -90 to +90.
  • Longitude: Use positive values for the Eastern Hemisphere (E) and negative values for the Western Hemisphere (W). The valid range is -180 to +180.
Performing the Calculation:
  • Select Unit: Choose your desired unit of measurement from the dropdown menu—Kilometers (km) or Miles (mi).
  • Calculate: Click the 'Calculate Distance' button to execute the Haversine formula and compute the result.
  • Review Result: The output will display the total great-circle distance. You can copy this value for your records. The 'Reset' button clears all fields for a new calculation.

Practical Input Examples

  • For Paris, France: Latitude = 48.8566, Longitude = 2.3522
  • For Buenos Aires, Argentina: Latitude = -34.6037, Longitude = -58.3816
  • Check your inputs carefully; a misplaced negative sign can drastically alter the result.

Real-World Applications of Great Circle Distance

  • Optimizing routes in aviation and maritime shipping
  • Understanding global connections in geography and geopolitics
  • Applications in seismology and radio communications
Great-circle calculations are indispensable across numerous industries and scientific fields:
Transportation and Logistics:
  • Aviation: Airlines meticulously plan flight paths along great circles to save millions of dollars in fuel costs annually and reduce flight times.
  • Maritime Shipping: Cargo vessels traverse vast oceans using great-circle navigation to create the most efficient long-distance routes, cutting down on transit time and operational expenses.
Science and Technology:
  • Seismology: Scientists calculate the distance from an earthquake's epicenter to seismic monitoring stations using great-circle paths to understand how seismic waves travel through the Earth.
  • Radio Communications: Amateur radio operators use great-circle paths to determine the shortest route for radio signals to travel, which is crucial for long-distance (DX) communication.

Industry Use Cases

  • An air traffic controller routing a transatlantic flight.
  • A logistics manager planning a shipment from China to Europe.
  • A geophysicist pinpointing an earthquake's location based on data from multiple stations.

Mathematical Derivation: The Haversine Formula

  • Understanding the components of the Haversine formula
  • Why it's superior to other methods for this calculation
  • A worked example converting coordinates to distance
To accurately calculate the great-circle distance, our calculator employs the Haversine formula. This method is highly reliable because it avoids issues with numerical instability that can occur with other formulas (like the spherical law of cosines) when distances are very small.
The Formula:
The Haversine formula is a multi-step calculation:
1. a = sin²(Δφ/2) + cos(φ1) * cos(φ2) * sin²(Δλ/2)
2. c = 2 * atan2(√a, √(1−a))
3. d = R * c
Where:
  • φ1, φ2 are the latitudes of the two points in radians.
  • Δφ is the difference in latitude (φ2 - φ1).
  • Δλ is the difference in longitude (λ2 - λ1) in radians.
  • R is the Earth's mean radius (approx. 6,371 km or 3,959 miles).
  • atan2 is a common variant of the arctangent function that handles the quadrant of the result correctly.

Calculation Walkthrough

  • Given Point A (lat 50°, lon 0°) and Point B (lat 50°, lon 30°).
  • First, convert all degree values to radians by multiplying by π/180.
  • Then, plug the radian values into the formula to find 'a', then 'c'.
  • Finally, multiply 'c' by the Earth's radius in your desired unit to get the final distance.

Common Misconceptions and Key Considerations

  • The 'flat map' fallacy
  • Earth's true shape: an oblate spheroid
  • The difference between distance and bearing
Several common misunderstandings can lead to errors when thinking about global distances.
Misconception: A Straight Line on a Map is Shortest
This is the most frequent error, stemming from 2D map projections like Mercator, which massively distort area and distance, especially near the poles. The actual shortest path follows the Earth's curvature.
Important Consideration: The Earth is Not a Perfect Sphere
The Earth is technically an 'oblate spheroid'—it bulges slightly at the equator and is flatter at the poles. For most applications, using a mean spherical radius (as the Haversine formula does) provides excellent accuracy. However, for extremely high-precision geodesic calculations (e.g., in surveying or missile guidance), more complex models like the Vincenty formula are used, which account for the Earth's elliptical shape.
Distance vs. Bearing
This calculator provides the total distance. It does not provide the bearing (or azimuth), which is the compass direction you would need to travel. Along a great-circle path, the bearing continuously changes (except for cardinal directions).

Points to Remember

  • Always verify your coordinates, including the sign (+/-).
  • Remember that the calculated distance is an arc on a sphere, not a straight line.
  • For professional navigation, always use official charts and tools in addition to this calculator.