|
@@ -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)"],
|
|
|
}
|