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
From the project website https://carbonmajors.org/Downloads:
The Carbon Majors dataset is open source available for download as CSV files for non-commercial use. InfluenceMap's Terms and Conditions apply. The data is updated annually in November and he following downloads represent the latest available data. We offer three levels of granularity:
Low granularity: contains year, entity, entity type, and total emissions.
Medium granularity: contains year, entity, entity type, commodity, commodity production, commodity unit, and total emissions.
High granularity: contains the same fields as the medium granularity file, as well as the reporting entity, data point source, product emissions, and the four different operational emissions: flaring, venting, own fuel use, and fugitive methane.
Please note that Carbon Majors total emissions data includes:
Scope 1 emissions - four direct operational emissions sources. Note these are only partial scope 1 emissions, only emissions that are production-linked. An entity's total scope 1 emissions may be higher.
Scope 3 emissions - emissions from the combustion of marketed products. Note these are partial scope 3 emissions categorized as Scope 3: Category 11 ‘use of sold products’, which has been modified to quantify emissions from each entity's net production as opposed to sold products. An entity's total scope 3 emissions may be higher.
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.