get_station_data
Retrieve detailed weather data for a specific station by providing its unique identifier, sourced directly from Spain's State Meteorological Agency (AEMET) API.
Instructions
Obtain specific weather data for a weather station.
Args: station_id: Station identifier (e.g., "8416Y" for Valencia))
Input Schema
Name | Required | Description | Default |
---|---|---|---|
station_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"station_id": {
"title": "Station Id",
"type": "string"
}
},
"required": [
"station_id"
],
"title": "get_station_dataArguments",
"type": "object"
}