geojson_to_geometry
Convert GeoJSON data to Shapely geometry and output as WKT format using the GIS MCP Server, enabling precise geospatial analysis and integration with AI-driven workflows.
Instructions
Convert GeoJSON to a Shapely geometry using shapely.shape.
Args:
geojson: GeoJSON dictionary.
Returns:
Dictionary with status, message, and geometry as WKT.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geojson | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geojson": {
"additionalProperties": true,
"title": "Geojson",
"type": "object"
}
},
"required": [
"geojson"
],
"title": "geojson_to_geometryArguments",
"type": "object"
}