get_station_observations
Retrieve hourly weather observations from Portuguese stations including temperature, humidity, pressure, wind, precipitation, and radiation data from the last 24 hours.
Instructions
Get meteorological observations from weather stations (Observações últimas 24 horas).
Args:
station_id: ID of the weather station. Leave empty to see all stations.
Returns hourly meteorological observations from the last 24 hours including:
- Temperature
- Humidity
- Pressure
- Wind speed and direction
- Precipitation
- Radiation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| station_id | No |
Input Schema (JSON Schema)
{
"properties": {
"station_id": {
"default": "",
"title": "Station Id",
"type": "string"
}
},
"type": "object"
}