Browse Source

[DATALAD] Recorded changes

Daniel Busch 3 weeks ago
parent
commit
cddab90b73

+ 7 - 8
conv_FAO_IPPCC2006_PRIMAP_N2O.csv

@@ -3,13 +3,12 @@
 FAO,IPCC2006_PRIMAP,comment
 M.3.MM, 3.A.2, FAO All animals manure management to IPCC 3.A.2 Manure Management
 M.1.BCR, 3.C.1.b, All Crops - Burning crop residues (Emissions N2O) (or the sum of FAO 1.A.X.b) to IPCC 3.C.1.b Biomass Burning In Croplands
-M.3.MP, M.3.C.MP, FAO Manure left on pasture to IPCC Direct and indirect emissions from manure left on pasture
-M.3.MA, M.3.C.MA, FAO Manure applied to soils to IPCC Direct and indirect emissions from manure applied to soils
-M.1.CR, M.3.C.CR, FAO Crop residues to IPCC Direct and indirect emissions from crop residues
-M.3.MP + M.3.MA + M.1.CR, 3.C.4
-1.B.1,M.3.C.4.SF, FAO Synthetic fertilisers direct emissions to IPCC Synthetic fertiliser emissions from direct N2O Emissions from Managed Soils - Better to map indivudually in case it covers different range of years
-1.B.2.a + 1.B.2.b,M.3.C.5.SF, FAO Synthetic fertilisers direct emissions to IPCC Synthetic fertiliser emissions from direct N2O Emissions from Managed Soils - Better to map individually in case it covers different range of years
-5.A,3.B.3,FAO 5.A Drained grassland to IPCC 3.B.3 Grassland
-5.B,3.B.2,Drained cropland
+M.3.MP, M.3.C.45.MP, FAO Manure left on pasture to IPCC Direct and indirect N2O emissions from manure left on pasture
+M.3.MA, M.3.C.45.MA, FAO Manure applied to soils to IPCC Direct and indirect N2O emissions from manure applied to soils
+M.1.CR, M.3.C.45.CR, FAO Crop residues to IPCC Direct and indirect emissions N2O from crop residues
+1.B.1,3.C.4.a, FAO Synthetic fertilisers direct emissions to IPCC Synthetic fertiliser emissions from direct N2O Emissions from Managed Soils
+1.B.2.a + 1.B.2.b,M.3.C.5.SF, FAO Synthetic fertilisers direct emissions to IPCC Synthetic fertiliser emissions from direct N2O Emissions from Managed Soils
+5.A,M.3.C.4.DOS.GL,FAO 5.A Drained grassland to IPCC 3.C.4 share of drained organic soils in grass land
+5.B,M.3.C.4.DOS.CL,FAO 5.B Drained cropland to IPCC 3.C.4 share of drained organic soils in cropland
 6.A,3.C.1.a, FAO 6.A forest fires to IPCC 3.C.1.a Biomass burning in forest lands
 6.B, 3.C.1.c, FAO 6.B savanna fires to IPCC 3.C.1.c Biomass burning in grasslands

+ 39 - 13
src/faostat_data_primap/helper/category_aggregation.py

@@ -383,7 +383,7 @@ agg_info_fao = {
 }
 
 # aggregating each gas separately to make this easier to understand
-# We can change it back to one dict once it's all organised
+# We can change it back to one dict, once it's all sorted out
 agg_info_ipcc2006_primap_N2O = {
     "category (IPCC2006_PRIMAP)": {
         "M.3.C.1.AG": {  # AG-related emissions from Biomass Burning
@@ -397,23 +397,50 @@ agg_info_ipcc2006_primap_N2O = {
             "sources": ["M.3.C.1.AG"],
             "sel": {"variable": ["N2O"]},
         },
+        "3.C.4": {  # Direct N2O Emissions from Managed Soils
+            # We currently only have direct and indirect emissions combined in one category.
+            # Therefore, we need to make a decision how to classify it. We decided to map it all to
+            # direct emissions. In does not make a difference for the primap-hist sectors,
+            # but TODO direct / indirect should be mapped individually
+            "sources": [
+                "M.3.C.45.MP",  # Direct and indirect emissions from manure left on pasture (FAO M.3.MP)
+                "M.3.C.45.MA",  # Direct and indirect emissions from manure applied to soils (FAO M.3.MA)
+                "M.3.C.45.CR",  # Direct and indirect emissions from crop residues (FAO M.1.CR)
+                "3.C.4.a",  # synthetic fertilisers direct
+                "M.3.C.4.DOS.CL",  # Drained cropland (FAO 5.A drained cropland)
+                "M.3.C.4.DOS.GL",  # Drained grassland (FAO 5.B drained grassland)
+            ],
+            "sel": {"variable": ["N2O"]},
+        },
+        "3.C.5": {  # Indirect N2O Emissions from Managed Soils
+            "sources": [
+                # Similarly to 3.C.4, 3.C.5 does not accurately represent the IPCC categories
+                # There should be only indirect emissions in this category, but we only have direct and indirect combined,
+                # except for "M.3.C.5.SF" which is only indirect
+                "M.3.C.5.SF",  # synthetic fertilisers indirect - there is no IPCC sub-category for this
+            ],
+            "sel": {"variable": ["N2O"]},
+        },
         "M.3.C.AG": {
             "sources": [
-                "M.3.C.1.AG",  # AG-related emissions from Biomass Burning
-                "M.3.C.MP",  # Direct and indirect emissions from manure left on pasture (FAO M.3.MP)
-                "M.3.C.MA",  # Direct and indirect emissions from manure applied to soils (FAO M.3.MA)
-                "M.3.C.CR",  # Direct and indirect emissions from crop residues (FAO M.1.CR)
-                "M.3.C.4.SF",  # synthetic fertilisers direct
-                "M.3.C.5.SF",  # synthetic fertilisers indirect
-                "3.C.7",  # rice cultivation
-                "3.B.2",  # Drained grassland
-                "3.B.3",  # Drained cropland
+                "M.3.C.1.AG",  # AG-related emissions from Biomass Burning, same as 3.C.1
+                "3.C.4",  # Direct N2O Emissions from Managed Soils
+                "3.C.5",  # Indirect N2O Emissions from Managed Soils
+                # "M.3.C.45.MP",  # Direct and indirect emissions from manure left on pasture (FAO M.3.MP)
+                # "M.3.C.45.MA",  # Direct and indirect emissions from manure applied to soils (FAO M.3.MA)
+                # "M.3.C.45.CR",  # Direct and indirect emissions from crop residues (FAO M.1.CR)
+                # "3.C.4.a",  # synthetic fertilisers direct
+                # "M.3.C.5.SF",  # synthetic fertilisers indirect - there is no IPCC sub-category for this
+                # "M.3.C.4.DOS.CL",  # Drained cropland (FAO 5.A drained cropland)
+                # "M.3.C.4.DOS.GL",  # Drained grassland (FAO 5.B drained grassland)
             ],
             "sel": {"variable": ["N2O"]},
         },
         "M.AG.ELV": {
             "sources": ["M.3.C.AG"],
-            "sel": {"variable": ["N2O"]},  # "M.3.D.AG" is zero
+            "sel": {
+                "variable": ["N2O"]
+            },  # "M.3.D.AG" would be part of this, but does not exist
         },
         "3.C": {
             "sources": ["M.3.C.AG"],
@@ -435,8 +462,7 @@ agg_info_ipcc2006_primap_N2O = {
         "M.LULUCF": {
             "sources": [
                 "3.B.1",  # Carbon stock change in forests (FAO 4, or 4.A and 4.B)
-                "M.NFC",  # Net forest conversion
-                "3.C.1.a",  # Biomass Burning In Forests
+                "3.C.1.a",  # Biomass Burning In Forests (FAO 6.A forest fires)
             ],
             "sel": {"variable": ["N2O"]},
         },