get_bbox_for_region
Retrieve WGS84 bounding box coordinates for named regions to enable spatial queries. Supports countries, Brazilian states, biomes, continents, and macro-regions for geospatial analysis.
Instructions
Get the WGS84 bounding box for a named region.
Supports countries, Brazilian states, Brazilian biomes, continents, and macro-regions. Useful for building spatial queries.
Args: region_name: Region name (case-insensitive, underscores for spaces). Examples: 'brazil', 'goias', 'cerrado', 'europe', 'south_america', 'amazonia_legal', 'global'.
Returns: Dict with bbox [west, south, east, north] and region name. If not found, returns error with list of available regions.
Example: get_bbox_for_region("cerrado") # → {"region": "cerrado", "bbox": [-60.47, -24.68, -41.28, -2.33]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| region_name | Yes |