add coloring for ammonia
This commit is contained in:
parent
2e9ee7b796
commit
2d562c1349
@ -573,6 +573,11 @@ plotting:
|
|||||||
H2 pipeline retrofitted: '#ba99b5'
|
H2 pipeline retrofitted: '#ba99b5'
|
||||||
H2 Fuel Cell: '#c251ae'
|
H2 Fuel Cell: '#c251ae'
|
||||||
H2 Electrolysis: '#ff29d9'
|
H2 Electrolysis: '#ff29d9'
|
||||||
|
# ammonia
|
||||||
|
NH3: '#46caf0'
|
||||||
|
ammonia store: '#00ace0'
|
||||||
|
ammonia cracker: '#87d0e6'
|
||||||
|
Haber-Bosch: '#076987'
|
||||||
# syngas
|
# syngas
|
||||||
Sabatier: '#9850ad'
|
Sabatier: '#9850ad'
|
||||||
methanation: '#c44ce6'
|
methanation: '#c44ce6'
|
||||||
|
@ -23,6 +23,8 @@ def rename_techs_tyndp(tech):
|
|||||||
return "power-to-gas"
|
return "power-to-gas"
|
||||||
elif tech == "H2":
|
elif tech == "H2":
|
||||||
return "H2 storage"
|
return "H2 storage"
|
||||||
|
elif tech in ["NH3", "Haber-Bosch", "ammonia cracker", "ammonia store"]:
|
||||||
|
return "ammonia"
|
||||||
elif tech in ["OCGT", "CHP", "gas boiler", "H2 Fuel Cell"]:
|
elif tech in ["OCGT", "CHP", "gas boiler", "H2 Fuel Cell"]:
|
||||||
return "gas-to-power/heat"
|
return "gas-to-power/heat"
|
||||||
elif "solar" in tech:
|
elif "solar" in tech:
|
||||||
|
@ -51,6 +51,7 @@ def rename_techs(label):
|
|||||||
"ror": "hydroelectricity",
|
"ror": "hydroelectricity",
|
||||||
"hydro": "hydroelectricity",
|
"hydro": "hydroelectricity",
|
||||||
"PHS": "hydroelectricity",
|
"PHS": "hydroelectricity",
|
||||||
|
"NH3": "ammonia"
|
||||||
"co2 Store": "DAC",
|
"co2 Store": "DAC",
|
||||||
"co2 stored": "CO2 sequestration",
|
"co2 stored": "CO2 sequestration",
|
||||||
"AC": "transmission lines",
|
"AC": "transmission lines",
|
||||||
@ -106,6 +107,7 @@ preferred_order = pd.Index([
|
|||||||
"natural gas",
|
"natural gas",
|
||||||
"helmeth",
|
"helmeth",
|
||||||
"methanation",
|
"methanation",
|
||||||
|
"ammonia",
|
||||||
"hydrogen storage",
|
"hydrogen storage",
|
||||||
"power-to-gas",
|
"power-to-gas",
|
||||||
"power-to-liquid",
|
"power-to-liquid",
|
||||||
|
Loading…
Reference in New Issue
Block a user