get_precipitation_for
Retrieve precise 2-hour precipitation forecasts for any location using latitude and longitude coordinates, enabling accurate weather planning.
Instructions
Fetches precipitation data for the next 2 hours from Buienradar.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lat | Yes | ||
lon | Yes |
Input Schema (JSON Schema)
{
"properties": {
"lat": {
"title": "Lat",
"type": "number"
},
"lon": {
"title": "Lon",
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"title": "get_precipitation_forArguments",
"type": "object"
}