Categories

Great Circle Distance

Calculate the great-circle distance between two coordinates using the Haversine formula

Key Facts

Category
Geography
Input Types
number
Output Type
json
Sample Coverage
1
API Ready
Yes

Overview

The Great Circle Distance Calculator computes the shortest path between two geographic coordinates on Earth using the haversine formula. Input start and end latitudes and longitudes, select your preferred unit, and set decimal precision to get an accurate distance measurement.

When to Use

  • When planning air or sea routes to determine the most efficient travel path.
  • For geographic analysis in logistics, surveying, or mapping applications.
  • To estimate straight-line distances for navigation or outdoor recreation planning.

How It Works

  • Enter the latitude and longitude for the starting point, ranging from -90 to 90 and -180 to 180 respectively.
  • Enter the latitude and longitude for the destination point within the same ranges.
  • Choose the distance unit: kilometers, miles, nautical miles, or meters.
  • Set the decimal precision from 0 to 10 places (default is 2), then calculate to receive the great circle distance.

Use Cases

Aviation route planning for pilots to estimate flight distances and fuel requirements.
Maritime navigation for ship captains to calculate sea routes between ports.
Outdoor activity planning, such as hiking or cycling, to gauge trail distances between points.

Examples

1. Flight Distance from New York to London

Pilot
Background
A pilot needs to estimate the great circle distance for a transatlantic flight from JFK Airport to Heathrow Airport.
Problem
Determine the shortest air distance to assist in fuel and time calculations.
How to Use
Enter start coordinates for JFK Airport (40.6413, -73.7781) and end coordinates for Heathrow Airport (51.4700, -0.4543), select nautical miles, and calculate.
Outcome
The tool returns the distance in nautical miles, aiding in flight planning and resource allocation.

2. Shipping Route between Shanghai and Los Angeles

Background
A logistics manager is optimizing container shipping routes across the Pacific Ocean.
Problem
Calculate the sea distance between Shanghai Port and Los Angeles Port to estimate travel time and costs.
How to Use
Input coordinates for Shanghai Port (31.2304, 121.4737) and Los Angeles Port (33.7405, -118.2720), choose nautical miles, and compute.
Outcome
Obtain the great circle distance to support route efficiency and operational planning.

3. Hiking Trail Distance Estimation

Background
A hiker is planning a trek between two mountain peaks in a national park.
Problem
Find the straight-line distance between the trailhead and summit for trail preparation.
How to Use
Enter GPS coordinates for the start point (e.g., 34.0522, -118.2437) and end point (e.g., 34.0689, -118.2465), select kilometers, and calculate.
Outcome
Get an approximate distance to help in planning duration and supplies for the hike.

Try with Samples

geography

FAQ

What is the great circle distance?

It is the shortest distance between two points on Earth's surface, calculated using the haversine formula for spherical geometry.

What units are supported?

You can select kilometers, miles, nautical miles, or meters for the output distance.

How accurate is the calculation?

Accuracy depends on the input precision; you can set decimal places from 0 to 10, with a default of 2 for balanced detail.

Can I use this for coordinates on other planets?

No, this tool is designed specifically for Earth's coordinates using the standard great circle formula.

What is the default precision setting?

The default precision is 2 decimal places, but you can adjust it as needed for your application.

API Documentation

Request Endpoint

POST /en/api/tools/great-circle-distance

Request Parameters

Parameter Name Type Required Description
lat1 number Yes -
lon1 number Yes -
lat2 number Yes -
lon2 number Yes -

Response Format

{
  "key": {...},
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
JSON Data: JSON Data

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-great-circle-distance": {
      "name": "great-circle-distance",
      "description": "Calculate the great-circle distance between two coordinates using the Haversine formula",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=great-circle-distance",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]