get_historical_weather
Retrieve historical weather data for any location and date range to analyze climate trends, compare year-over-year patterns, and support research with daily and hourly summaries.
Instructions
Retrieves historical weather data for trend analysis and research.
Access 80+ years of historical weather data from Open-Meteo archives.
Use cases:
Compare weather patterns year-over-year
Climate trend analysis
Event planning based on historical patterns
Research and academic studies
Examples:
"How was the weather in Zurich on this date last year?"
"Get average temperatures for July over the past 10 years"
"Compare winter snow patterns"
Args: latitude: Latitude in decimal degrees longitude: Longitude in decimal degrees start_date: Start date in ISO format (YYYY-MM-DD) end_date: End date in ISO format (YYYY-MM-DD) include_hourly: Include hourly historical data (default: false) timezone: Timezone for timestamps (default: 'auto')
Returns: Dictionary containing: - historical weather data with temperature, precipitation, wind, etc. - daily summaries (temperature min/max, precipitation, weather codes) - optional hourly data if requested
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | Yes | ||
| latitude | Yes | ||
| timezone | No | auto | |
| longitude | Yes | ||
| start_date | Yes | ||
| include_hourly | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||