normalize_geometry
Standardize the orientation and order of geometric data in WKT format for consistent analysis and processing within the GIS MCP Server environment.
Instructions
Normalize the orientation/order of a geometry using shapely.normalize.
Args:
geometry: WKT string of the geometry.
Returns:
Dictionary with status, message, and normalized geometry as WKT.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometry | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometry": {
"title": "Geometry",
"type": "string"
}
},
"required": [
"geometry"
],
"title": "normalize_geometryArguments",
"type": "object"
}