unary_union_geometries
Merge multiple geometries into a single unified shape using the GIS MCP Server, enabling efficient geospatial analysis and simplifying complex spatial datasets.
Instructions
Create a union of multiple geometries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometries | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometries": {
"items": {
"type": "string"
},
"title": "Geometries",
"type": "array"
}
},
"required": [
"geometries"
],
"title": "unary_union_geometriesArguments",
"type": "object"
}