GIS MCP Server

calculate_geodetic_point

Compute a geodetic point based on a start location, specified distance, and azimuth using geospatial calculations within the GIS MCP Server.

Instructions

Calculate point at given distance and azimuth.

Input Schema

NameRequiredDescriptionDefault
azimuthYes
distanceYes
ellpsNoWGS84
start_pointYes

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" }
ID: irl5u9uw6f