get_session_weather
Retrieve detailed weather data for specific Formula 1 sessions, including temperature, humidity, pressure, wind, and rainfall measurements throughout the event.
Instructions
Get time-series weather data - temp, humidity, pressure, wind, rainfall.
Args: year: Season year (2018+) gp: Grand Prix name or round session: 'FP1', 'FP2', 'FP3', 'Q', 'S', 'R'
Returns: SessionWeatherDataResponse with weather points
Example: get_session_weather(2024, "Spa", "R") → Weather throughout race
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | ||
| gp | Yes | ||
| session | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event_name | Yes | Grand Prix name | |
| session_name | Yes | Session name | |
| total_points | Yes | Total number of weather data points | |
| weather_data | Yes | Weather data points throughout session |