get_geometry_type
Identify the geometry type (e.g., point, line, polygon) of a given geospatial shape. Enables precise geospatial analysis by determining the structure of input geometries for GIS operations.
Instructions
Get the type of a geometry.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
geometry | Yes |
Input Schema (JSON Schema)
{
"properties": {
"geometry": {
"title": "Geometry",
"type": "string"
}
},
"required": [
"geometry"
],
"title": "get_geometry_typeArguments",
"type": "object"
}