intersection
Determine the overlapping area of two geometries using the GIS MCP Server, enabling precise geospatial analysis for accurate intersection identification.
Instructions
Find intersection of two geometries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometry1 | Yes | ||
geometry2 | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometry1": {
"title": "Geometry1",
"type": "string"
},
"geometry2": {
"title": "Geometry2",
"type": "string"
}
},
"required": [
"geometry1",
"geometry2"
],
"title": "intersectionArguments",
"type": "object"
}