UK Energy Data 2020-23
Collection of UK energy network data between the period of 2020 - 2023.
@kaggle.danielparke_uk_energy_data_2020_23
Collection of UK energy network data between the period of 2020 - 2023.
@kaggle.danielparke_uk_energy_data_2020_23
CREATE TABLE uk_fuel_mix (
"datetime" TIMESTAMP,
"net_demand" BIGINT,
"total_system_demand" BIGINT,
"england_wales_demand" BIGINT,
"generation" BIGINT,
"gas" BIGINT,
"coal" BIGINT,
"nuclear" BIGINT,
"scot_wind" DOUBLE,
"eng_wind" DOUBLE,
"uk_wind" BIGINT,
"wind_capacity" BIGINT,
"hydro" BIGINT,
"imports" BIGINT,
"ifa_flow" BIGINT,
"ifa2_flow" BIGINT,
"britned_flow" BIGINT,
"moyle_flow" BIGINT,
"east_west_flow" BIGINT,
"nemo_flow" BIGINT,
"nsl_flow" BIGINT,
"eleclink_flow" BIGINT,
"net_interc_flow" BIGINT,
"biomass" BIGINT,
"other" BIGINT,
"solar" BIGINT,
"solar_cap" BIGINT,
"pumped_storage" BIGINT,
"storage" BIGINT,
"carbon_intensity" BIGINT,
"low_carbon" BIGINT,
"zero_carbon" BIGINT,
"renewable" BIGINT,
"fossil" BIGINT,
"gas_perc" DOUBLE,
"coal_perc" DOUBLE,
"nuclear_perc" DOUBLE,
"wind_perc" DOUBLE,
"hydro_perc" DOUBLE,
"imports_perc" DOUBLE,
"biomass_perc" DOUBLE,
"other_perc" DOUBLE,
"solar_perc" DOUBLE,
"storage_perc" DOUBLE,
"generation_perc" BIGINT,
"low_carbon_perc" DOUBLE,
"zero_carbon_perc" DOUBLE,
"renewable_perc" DOUBLE,
"fossil_perc" DOUBLE
);
CREATE TABLE uk_fuel_mix_reduced (
"datetime" TIMESTAMP,
"dem_gen_diff" BIGINT,
"gas" BIGINT,
"coal" BIGINT,
"nuclear" BIGINT,
"scot_wind" DOUBLE,
"eng_wind" DOUBLE,
"uk_wind" BIGINT,
"hydro" BIGINT,
"imports" BIGINT,
"biomass" BIGINT,
"other" BIGINT,
"solar" BIGINT,
"pumped_storage" BIGINT,
"storage" BIGINT,
"carbon_intensity" BIGINT
);
CREATE TABLE uk_fuel_mix_reducedmore (
"datetime" TIMESTAMP,
"dem_gen_diff" BIGINT,
"uk_wind" BIGINT,
"carbon_intensity" BIGINT,
"low_carbon" BIGINT,
"zero_carbon" BIGINT,
"renewable" BIGINT,
"fossil" BIGINT
);
Anyone who has the link will be able to view this.