Daily Weather And Forecasts
Historical and forecast daily weather metrics for global cities
@openmeteo.daily_weather
Historical and forecast daily weather metrics for global cities
@openmeteo.daily_weather
Daily historical weather observations and daily weather forecasts retrieved from the Open-Meteo API. The dataset includes temperature, precipitation, snowfall, radiation, weather codes, sunrise/sunset times, and other daily metrics for a set of population-ranked cities sourced from @geonames.geonames.
The dataset includes two long-format tables:
Forecast data retains every forecast run, enabling backtesting, forecast comparison, and analysis of forecast accuracy over time.
CREATE TABLE forecast_daily_weather (
"date" TIMESTAMP,
"location_id" VARCHAR,
"name" VARCHAR,
"country_code" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"forecast_run_ts" TIMESTAMP,
"variable" VARCHAR,
"value" DOUBLE,
"value_ts" TIMESTAMP
);CREATE TABLE historical_daily_weather (
"date" TIMESTAMP,
"location_id" VARCHAR,
"name" VARCHAR,
"country_code" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"variable" VARCHAR,
"value" DOUBLE,
"value_ts" TIMESTAMP
);Anyone who has the link will be able to view this.