Hourly Energy Demand Generation And Weather
Electrical demand, generation by type, prices and weather in Spain
@kaggle.nicholasjhana_energy_consumption_generation_prices_and_weather
Electrical demand, generation by type, prices and weather in Spain
@kaggle.nicholasjhana_energy_consumption_generation_prices_and_weather
CREATE TABLE energy_dataset (
"time" VARCHAR,
"generation_biomass" DOUBLE,
"generation_fossil_brown_coal_lignite" DOUBLE,
"generation_fossil_coal_derived_gas" DOUBLE,
"generation_fossil_gas" DOUBLE,
"generation_fossil_hard_coal" DOUBLE,
"generation_fossil_oil" DOUBLE,
"generation_fossil_oil_shale" DOUBLE,
"generation_fossil_peat" DOUBLE,
"generation_geothermal" DOUBLE,
"generation_hydro_pumped_storage_aggregated" VARCHAR,
"generation_hydro_pumped_storage_consumption" DOUBLE,
"generation_hydro_run_of_river_and_poundage" DOUBLE,
"generation_hydro_water_reservoir" DOUBLE,
"generation_marine" DOUBLE,
"generation_nuclear" DOUBLE,
"generation_other" DOUBLE,
"generation_other_renewable" DOUBLE,
"generation_solar" DOUBLE,
"generation_waste" DOUBLE,
"generation_wind_offshore" DOUBLE,
"generation_wind_onshore" DOUBLE,
"forecast_solar_day_ahead" DOUBLE,
"forecast_wind_offshore_eday_ahead" VARCHAR,
"forecast_wind_onshore_day_ahead" DOUBLE,
"total_load_forecast" DOUBLE,
"total_load_actual" DOUBLE,
"price_day_ahead" DOUBLE,
"price_actual" DOUBLE
);
CREATE TABLE weather_features (
"dt_iso" VARCHAR,
"city_name" VARCHAR,
"temp" DOUBLE,
"temp_min" DOUBLE,
"temp_max" DOUBLE,
"pressure" BIGINT,
"humidity" BIGINT,
"wind_speed" BIGINT,
"wind_deg" BIGINT,
"rain_1h" DOUBLE,
"rain_3h" DOUBLE,
"snow_3h" DOUBLE,
"clouds_all" BIGINT,
"weather_id" BIGINT,
"weather_main" VARCHAR,
"weather_description" VARCHAR,
"weather_icon" VARCHAR
);
Anyone who has the link will be able to view this.