Greenhouse Gas Giants
Historical production data from largest fossil fuel producers
@kaggle.konradb_greenhouse_gas_giants
Historical production data from largest fossil fuel producers
@kaggle.konradb_greenhouse_gas_giants
CREATE TABLE emissions_high_granularity (
"year" BIGINT,
"parent_entity" VARCHAR,
"parent_type" VARCHAR,
"reporting_entity" VARCHAR,
"commodity" VARCHAR,
"production_value" DOUBLE,
"production_unit" VARCHAR,
"product_emissions_mtco2" DOUBLE,
"flaring_emissions_mtco2" DOUBLE,
"venting_emissions_mtco2" DOUBLE,
"own_fuel_use_emissions_mtco2" DOUBLE,
"fugitive_methane_emissions_mtco2e" DOUBLE,
"fugitive_methane_emissions_mtch4" DOUBLE,
"total_operational_emissions_mtco2e" DOUBLE,
"total_emissions_mtco2e" DOUBLE,
"source" VARCHAR
);
CREATE TABLE emissions_low_granularity (
"year" BIGINT,
"parent_entity" VARCHAR,
"parent_type" VARCHAR,
"total_emissions_mtco2e" DOUBLE
);
CREATE TABLE emissions_medium_granularity (
"year" BIGINT,
"parent_entity" VARCHAR,
"parent_type" VARCHAR,
"commodity" VARCHAR,
"production_value" DOUBLE,
"production_unit" VARCHAR,
"total_emissions_mtco2e" DOUBLE
);
Anyone who has the link will be able to view this.