calculate_geodetic_point
Calculate geodetic point coordinates at a specified distance and azimuth from a starting point using the GIS MCP Server for precise geospatial analysis.
Instructions
Calculate point at given distance and azimuth.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
azimuth | Yes | ||
distance | Yes | ||
ellps | No | WGS84 | |
start_point | Yes |
Input Schema (JSON Schema)
{
"properties": {
"azimuth": {
"title": "Azimuth",
"type": "number"
},
"distance": {
"title": "Distance",
"type": "number"
},
"ellps": {
"default": "WGS84",
"title": "Ellps",
"type": "string"
},
"start_point": {
"items": {
"type": "number"
},
"title": "Start Point",
"type": "array"
}
},
"required": [
"start_point",
"azimuth",
"distance"
],
"title": "calculate_geodetic_pointArguments",
"type": "object"
}