[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
7665de61d3
commit
bca4f95a07
@ -1066,7 +1066,9 @@ def build_eurostat_co2(eurostat: pd.DataFrame, year: int = 1990) -> pd.Series:
|
|||||||
|
|
||||||
# emissions in tCO2_equiv per MWh_th
|
# emissions in tCO2_equiv per MWh_th
|
||||||
specific_emissions["Solid fossil fuels"] = 0.36 # Approximates coal
|
specific_emissions["Solid fossil fuels"] = 0.36 # Approximates coal
|
||||||
specific_emissions["Oil and petroleum products"] = 0.285 # Average of distillate and residue
|
specific_emissions["Oil and petroleum products"] = (
|
||||||
|
0.285 # Average of distillate and residue
|
||||||
|
)
|
||||||
specific_emissions["Natural gas"] = 0.2 # For natural gas
|
specific_emissions["Natural gas"] = 0.2 # For natural gas
|
||||||
|
|
||||||
return eurostat_year.multiply(specific_emissions).sum(axis=1)
|
return eurostat_year.multiply(specific_emissions).sum(axis=1)
|
||||||
@ -1099,7 +1101,9 @@ def build_co2_totals(
|
|||||||
|
|
||||||
co2 = eea_co2.reindex(countries)
|
co2 = eea_co2.reindex(countries)
|
||||||
|
|
||||||
for ct in pd.Index(countries).intersection(["BA", "RS", "AL", "ME", "MK", "UA", "MD"]):
|
for ct in pd.Index(countries).intersection(
|
||||||
|
["BA", "RS", "AL", "ME", "MK", "UA", "MD"]
|
||||||
|
):
|
||||||
mappings = {
|
mappings = {
|
||||||
"electricity": (ct, "+", "Electricity & heat generation", np.nan),
|
"electricity": (ct, "+", "Electricity & heat generation", np.nan),
|
||||||
"residential non-elec": (ct, "+", "+", "Residential"),
|
"residential non-elec": (ct, "+", "+", "Residential"),
|
||||||
|
Loading…
Reference in New Issue
Block a user