get_forecast
Retrieve detailed weather forecasts for any location using geographic coordinates to plan activities and stay informed about upcoming conditions.
Instructions
Get weather forecast for a location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | Latitude of the location | |
longitude | Yes | Longitude of the location |
Input Schema (JSON Schema)
{
"properties": {
"latitude": {
"description": "Latitude of the location",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"description": "Longitude of the location",
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}