# 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.
