wkt_to_geojson
Convert Well-Known Text (WKT) to GeoJSON format for geographic data interoperability using the GIS Data Conversion MCP.
Instructions
Convert Well-Known Text (WKT) to GeoJSON format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wkt | Yes | Well-Known Text (WKT) string to convert |
Input Schema (JSON Schema)
{
"properties": {
"wkt": {
"description": "Well-Known Text (WKT) string to convert",
"type": "string"
}
},
"required": [
"wkt"
],
"type": "object"
}