Great Circle Distance Formula:
From: | To: |
The great-circle distance is the shortest distance between two points on the surface of a sphere, measured along the surface of the sphere. For Earth, this represents the shortest path between two locations (as the crow flies).
The calculator uses the Haversine formula:
Where:
Explanation: The formula calculates the central angle between two points and converts it to distance using Earth's radius.
Details: Great circle distance is essential for navigation, flight planning, telecommunications, and any application requiring accurate distance measurements between global locations.
Tips: Enter latitude (-90 to 90) and longitude (-180 to 180) in decimal degrees for both locations. Positive values are North/East, negative values are South/West.
Q1: How accurate is this calculation?
A: The calculation assumes a perfect sphere. Earth is an oblate spheroid, so actual distances may vary by up to 0.3%.
Q2: What's the difference between great circle and rhumb line?
A: Great circle is the shortest path, while rhumb line maintains constant bearing (longer but easier to navigate).
Q3: Can I use this for very short distances?
A: For distances under 20 km, planar approximation may be sufficient, but this calculator will still work.
Q4: Why does the formula use radians?
A: Trigonometric functions in most programming languages use radians, so conversion from degrees is necessary.
Q5: How does altitude affect the calculation?
A: This calculation ignores altitude differences, as they're negligible compared to Earth's radius.