find_nearby_stations
Locate nearby weather stations within a specified radius from a given geographic coordinate using latitude, longitude, and distance in kilometers.
Instructions
Find weather stations within a given radius (in km) from a given geographic coordinate.
Args: lat: Latitude in decimal degrees (e.g., 43.36) lon: Longitude in decimal degrees (e.g., -8.41) radio_km: Search radius in kilometers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lat | Yes | ||
lon | Yes | ||
radio_km | No |
Input Schema (JSON Schema)
{
"properties": {
"lat": {
"title": "Lat",
"type": "number"
},
"lon": {
"title": "Lon",
"type": "number"
},
"radio_km": {
"default": 25,
"title": "Radio Km",
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"title": "find_nearby_stationsArguments",
"type": "object"
}