GPS Utilities API v1.0
Calculate Distances (Between Each)
This endpoint measures the distance between each of the GPS coordinates provided in the List of coordinates.
The Response gives back each of the coordinates together with the distance
measured from the previous coordinate
and that particular coordinate, as well as, the total
distance accummulated as it processes the coordinate List.
You can elect to have the distance
and total
objects returned with all supported units of measurement.
The calculation uses the geodetic distance which takes into account the curvature of the earth. This is a 2d calculation which does not take elevation into consideration.
Marketplace: RapidAPI URL to this EndPoint
Authentication: Please see the requirements on the RapidAPI Portal.
Complete GPS Utils Endpoint List |
Endpoint URL
POST [RapidAPI Base URL]/v1/distances-be
Parameters
Parameter | Required | Description | Data Type |
---|---|---|---|
coordinates |
Yes | Array of coordinate objects. At least one object must be provided. The item count is limited by the plan that is subscribed to on RapidAPI. |
Array of Objects |
coordinates[].latitude |
Yes | Latitude of a coordinate in the array. | Number (float) |
coordinates[].longitude |
Yes | Longitude of a coordinate in the array. | Number (float) |
unit |
No |
Unit of measurement. Options: meters , miles , feet , km , nm , all . Default: meters .
One can only request all of the units or one of the valid options.
|
String |
fmt |
No | Format of returned data, Options: json (more coming soon). Default: json |
String |
dec |
No | Number of decimal places to use on the measurements. Options 0 to 6 Default: 5 |
Integer |
POST [RapidAPI Base URL]/v1/distances-be
Headers:
Please see the RapidAPI documentation
Body:
{
"coordinates": [
{
"latitude": -33.988444,
"longitude": 22.749813
},
{
"latitude": -34.005652,
"longitude": 22.758734
},
{
"latitude": -33.988796,
"longitude": 22.768931
},
{
"latitude": -33.991637,
"longitude": 22.788973
}
],
"unit": "meters",
"fmt": "json",
"dec": 5
}
{
"coordinates": [
{
"latitude": -33.988444,
"longitude": 22.749813,
"distance": {
"meters": 0
},
"total": {
"meters": 0
}
},
{
"latitude": -34.005652,
"longitude": 22.758734,
"distance": {
"meters": 2079.09276
},
"total": {
"meters": 2079.09276
}
},
{
"latitude": -33.988796,
"longitude": 22.768931,
"distance": {
"meters": 2093.63688
},
"total": {
"meters": 4172.72964
}
},
{
"latitude": -33.991637,
"longitude": 22.788973,
"distance": {
"meters": 1878.41054
},
"total": {
"meters": 6051.14018
}
}
],
"unit": "meters"
}
Or, with the "unit": "all" parameter:-
{
"coordinates": [
{
"latitude": -33.988444,
"longitude": 22.749813,
"distance": {
"meters": 0,
"kilometers": 0,
"nautical": 0,
"miles": 0,
"feet": 0
},
"total": {
"meters": 0,
"kilometers": 0,
"nautical": 0,
"miles": 0,
"feet": 0
}
},
{
"latitude": -34.005652,
"longitude": 22.758734,
"distance": {
"meters": 2079.09276,
"kilometers": 2.07909,
"nautical": 1.12262,
"miles": 1.29216,
"feet": 6821.17069
},
"total": {
"meters": 2079.09276,
"kilometers": 2.07909,
"nautical": 1.12262,
"miles": 1.29216,
"feet": 6821.17069
}
},
{
"latitude": -33.988796,
"longitude": 22.768931,
"distance": {
"meters": 2093.63688,
"kilometers": 2.09364,
"nautical": 1.13047,
"miles": 1.3012,
"feet": 6868.88762
},
"total": {
"meters": 4172.72964,
"kilometers": 4.17273,
"nautical": 2.25309,
"miles": 2.59337,
"feet": 13690.05831
}
},
{
"latitude": -33.991637,
"longitude": 22.788973,
"distance": {
"meters": 1878.41054,
"kilometers": 1.87841,
"nautical": 1.01426,
"miles": 1.16744,
"feet": 6162.76444
},
"total": {
"meters": 6051.14018,
"kilometers": 6.05114,
"nautical": 3.26735,
"miles": 3.76081,
"feet": 19852.82275
}
}
],
"unit": "all"
}