calculate_geodetic_distance
Measure the geodetic distance between two geographic points on Earth using WGS84 ellipsoid or a specified model. Ideal for precise geospatial analysis in GIS workflows.
Instructions
Calculate geodetic distance between points.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ellps | No | WGS84 | |
point1 | Yes | ||
point2 | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ellps": {
"default": "WGS84",
"title": "Ellps",
"type": "string"
},
"point1": {
"items": {
"type": "number"
},
"title": "Point1",
"type": "array"
},
"point2": {
"items": {
"type": "number"
},
"title": "Point2",
"type": "array"
}
},
"required": [
"point1",
"point2"
],
"title": "calculate_geodetic_distanceArguments",
"type": "object"
}