get_stations_bounds
Retrieve weather station data within a specified geographic bounding box using minimum and maximum latitude and longitude coordinates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_lat | Yes | Maximum latitude of the bounding box | |
max_lon | Yes | Maximum longitude of the bounding box | |
min_lat | Yes | Minimum latitude of the bounding box | |
min_lon | Yes | Minimum longitude of the bounding box |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"max_lat": {
"description": "Maximum latitude of the bounding box",
"type": "number"
},
"max_lon": {
"description": "Maximum longitude of the bounding box",
"type": "number"
},
"min_lat": {
"description": "Minimum latitude of the bounding box",
"type": "number"
},
"min_lon": {
"description": "Minimum longitude of the bounding box",
"type": "number"
}
},
"required": [
"min_lat",
"min_lon",
"max_lat",
"max_lon"
],
"type": "object"
}