소스 검색

downscaling 2

Daniel Busch 5 달 전
부모
커밋
79a820214b
1개의 변경된 파일17개의 추가작업 그리고 34개의 파일을 삭제
  1. 17 34
      src/unfccc_ghg_data/unfccc_reader/Cabo_Verde/config_cpv_bur1.py

+ 17 - 34
src/unfccc_ghg_data/unfccc_reader/Cabo_Verde/config_cpv_bur1.py

@@ -249,40 +249,17 @@ country_processing_step1 = {
         # "3.A": {"sources": ["3.A.1", "3.A.2"]}, # consistency check
         "4": {"sources": ["4.A", "4.B", "4.C", "4.D", "4.E"]},  # consistency check
     },
-    # We don't have HFCs and PFCs in the report, hence basket_copy is not relevant
     "basket_copy": {
         "GWPs_to_add": ["AR4GWP100", "AR5GWP100", "AR6GWP100"],
         "entities": ["HFCS"],
         "source_GWP": gwp_to_use,
     },
-    # "downscale": {
-    #     "sectors": {
-    #         "1.A": {
-    #             "basket": "1",
-    #             "basket_contents": ["1.A"],
-    #             "entities": ["CO2", "CH4", "N2O"],
-    #             "dim": f'category ({coords_terminologies["category"]})',
-    #         },
-    #         # "2_CO2" : {
-    #         #     "basket" : "2",
-    #         #     "basket_contents" : ["2.A", "2.B", "2.C", "2.D", "2.H"],
-    #         #     "entities" : ["CO2"],
-    #         #     "dim" : f'category ({coords_terminologies["category"]})',
-    #         # },
-    #         "2_CH4" : {
-    #             "basket" : "2",
-    #             "basket_contents" : ["2.A", "2.B", "2.C", "2.H"],
-    #             "entities" : ["CH4"],
-    #             "dim" : f'category ({coords_terminologies["category"]})',
-    #         },
-    #     },
-    # },
 }
 
 country_processing_step2 = {
     "downscale": {
         "sectors": {
-            "1.A": {
+            "1_all": {
                 "basket": "1",
                 "basket_contents": ["1.A"],
                 "entities": ["CO2", "CH4", "N2O"],
@@ -294,19 +271,25 @@ country_processing_step2 = {
                 "entities": ["CO2"],
                 "dim": f'category ({coords_terminologies["category"]})',
             },
-            # "2_CH4" : {
-            #     "basket" : "2",
-            #     "basket_contents" : ["2.A", "2.B", "2.C", "2.H"],
-            #     "entities" : ["CH4"],
-            #     "dim" : f'category ({coords_terminologies["category"]})',
-            # },
+            "2_KYOTO": {
+                "check_consistency": False,
+                "basket": "2",
+                "basket_contents": ["2.A", "2.B", "2.C", "2.H", "2.D"],
+                "entities": [
+                    "KYOTOGHG (SARGWP100)",
+                    "KYOTOGHG (AR4GWP100)",
+                    "KYOTOGHG (AR5GWP100)",
+                    "KYOTOGHG (AR6GWP100)",
+                ],
+                "dim": f'category ({coords_terminologies["category"]})',
+            },
         },
     },
 }
 
 gas_baskets = {
-    "KYOTOGHG (SARGWP100)": ["CO2", "CH4", "N2O"],
-    "KYOTOGHG (AR4GWP100)": ["CO2", "CH4", "N2O"],
-    "KYOTOGHG (AR5GWP100)": ["CO2", "CH4", "N2O"],
-    "KYOTOGHG (AR6GWP100)": ["CO2", "CH4", "N2O"],
+    "KYOTOGHG (SARGWP100)": ["CO2", "CH4", "N2O", "FGASES (SARGWP100)"],
+    "KYOTOGHG (AR4GWP100)": ["CO2", "CH4", "N2O", "FGASES (AR4GWP100)"],
+    "KYOTOGHG (AR5GWP100)": ["CO2", "CH4", "N2O", "FGASES (AR5GWP100)"],
+    "KYOTOGHG (AR6GWP100)": ["CO2", "CH4", "N2O", "FGASES (AR6GWP100)"],
 }