> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://help.sigmacomputing.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://help.sigmacomputing.com/_mcp/server.

# DistanceGlobe

Calculates the distance between two points on the globe, in kilometers.

## Usage

```
DistanceGlobe(latitude1, longitude1, latitude2, longitude2)
```

‍**latitude1** (required) The latitude of the first point (in degrees).\
**longitude1** (required) The longitude of the first point (in degrees).\
**latitude2** (required) The latitude of the second point (in degrees).\
**longitude2** (required) The longitude of the second point (in degrees).

## Example

```
DistanceGlobe([Start Lat], [Start Long], [End Lat], [End Long])
```

* Returns the trip distance, in kilometers.

## Related resources

* [DistancePlane](/docs/distanceplane)