geojson_to_wkt
Convert GeoJSON objects into Well-Known Text (WKT) format for streamlined GIS data processing and compatibility with spatial analysis tools.
Instructions
Convert GeoJSON to Well-Known Text (WKT) format
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| geojson | Yes | GeoJSON object to convert | 
Input Schema (JSON Schema)
{
  "properties": {
    "geojson": {
      "description": "GeoJSON object to convert",
      "type": "object"
    }
  },
  "required": [
    "geojson"
  ],
  "type": "object"
}