get_utm_zone
Determine the UTM zone for specific geographic coordinates to facilitate accurate geospatial analysis and coordinate transformations using GIS operations.
Instructions
Get UTM zone for given coordinates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coordinates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"coordinates": {
"items": {
"type": "number"
},
"title": "Coordinates",
"type": "array"
}
},
"required": [
"coordinates"
],
"title": "get_utm_zoneArguments",
"type": "object"
}