GIS MCP Server

calculate_geodetic_distance

Compute the geodetic distance between two geographic coordinates using the WGS84 ellipsoid. Ideal for precise spatial measurements in geospatial analysis projects.

Instructions

Calculate geodetic distance between points.

Input Schema

NameRequiredDescriptionDefault
ellpsNoWGS84
point1Yes
point2Yes

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