Merge branch 'ppl-fueltype-fix' of github.com:PyPSA/pypsa-eur into ppl-fueltype-fix
This commit is contained in:
commit
1541877fdc
@ -104,7 +104,9 @@ def replace_natural_gas_technology(df):
|
|||||||
|
|
||||||
|
|
||||||
def replace_natural_gas_fueltype(df):
|
def replace_natural_gas_fueltype(df):
|
||||||
return df.Fueltype.mask((df.Technology == "OCGT") | (df.Technology == "CCGT"), "Natural Gas")
|
return df.Fueltype.mask(
|
||||||
|
(df.Technology == "OCGT") | (df.Technology == "CCGT"), "Natural Gas"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user