Thailand Grand Prix 2025: Hourly Weather Data
A 72 hour weather check-in throughout the MotoGp competition in Buriram,Thailand
@kaggle.chik0di_thailand_grand_prix_2025_hourly_weather_data
A 72 hour weather check-in throughout the MotoGp competition in Buriram,Thailand
@kaggle.chik0di_thailand_grand_prix_2025_hourly_weather_data
This dataset contains hourly weather data for Buriram, Thailand, during the 2025 Thailand Grand Prix (MotoGP). The data has been collected using Weather API and provides essential weather conditions that could impact the race. It is valuable for race analysis, weather pattern study, and performance impact research.
CREATE TABLE thailand_grand_prix_motogp_2025_hourly_weather (
"date" TIMESTAMP,
"time" TIMESTAMP,
"temp_c" DOUBLE,
"temp_f" DOUBLE,
"condition" VARCHAR,
"wind_mph" DOUBLE,
"wind_kph" DOUBLE,
"wind_degree" BIGINT,
"wind_direction" VARCHAR,
"pressure_mb" DOUBLE,
"pressure_in" DOUBLE,
"precip_mm" DOUBLE,
"precip_in" DOUBLE,
"snow_cm" DOUBLE,
"humidity" BIGINT,
"cloud" BIGINT,
"feelslike_c" DOUBLE,
"feelslike_f" DOUBLE,
"windchill_c" DOUBLE,
"windchill_f" DOUBLE,
"heatindex_c" DOUBLE,
"heatindex_f" DOUBLE,
"dewpoint_c" DOUBLE,
"dewpoint_f" DOUBLE,
"will_it_rain" BIGINT,
"will_it_snow" BIGINT,
"chance_of_rain" BIGINT,
"chance_of_snow" BIGINT,
"is_day" BIGINT,
"gust_mph" DOUBLE,
"gust_kph" DOUBLE,
"uv" DOUBLE,
"visibility_km" DOUBLE,
"visibility_miles" DOUBLE
);
Anyone who has the link will be able to view this.