get_sea_forecast
Retrieve sea state forecasts for Portuguese coastal areas including wave height, period, direction, and sea temperature for up to 3 days ahead.
Instructions
Get sea state forecast for Portuguese coastal areas (Previsão Estado do Mar até 3 dias).
Args:
location_name: Name of coastal location (e.g., 'Porto', 'Lisboa', 'Faro', 'Funchal', 'Leiria').
Leave empty to see all available locations.
day: Forecast day (0=today, 1=tomorrow, 2=day after tomorrow). Valid range: 0-2
Returns sea state forecast including wave height, period, direction, and sea temperature.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| location_name | No | ||
| day | No |
Input Schema (JSON Schema)
{
"properties": {
"day": {
"default": 0,
"title": "Day",
"type": "integer"
},
"location_name": {
"default": "",
"title": "Location Name",
"type": "string"
}
},
"type": "object"
}