simplify
Reduce the complexity of geometric shapes by removing unnecessary vertices while preserving essential spatial characteristics, enabling efficient geospatial analysis.
Instructions
Simplify a geometry.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometry | Yes | ||
preserve_topology | No | ||
tolerance | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometry": {
"title": "Geometry",
"type": "string"
},
"preserve_topology": {
"default": true,
"title": "Preserve Topology",
"type": "boolean"
},
"tolerance": {
"title": "Tolerance",
"type": "number"
}
},
"required": [
"geometry",
"tolerance"
],
"title": "simplifyArguments",
"type": "object"
}