diff --git a/CHANGELOG.md b/CHANGELOG.md index f4101fa5..5da6014e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ and this project tries to adhere to [Semantic Versioning](https://semver.org/spe - popups for distilled layers - charts for popups - disappearing region charts +- electricity demand base set to year 2022 ## [0.1.0] - 2024-03-19 ### Added diff --git a/digiplan/map/calculations.py b/digiplan/map/calculations.py index b2f6ce3c..bbcfef17 100644 --- a/digiplan/map/calculations.py +++ b/digiplan/map/calculations.py @@ -304,7 +304,7 @@ def electricity_demand_per_municipality_2045(user_settings: dict) -> pd.DataFram pd.DataFrame Electricity demand per municipality (index) and sector (column) """ - demand = electricity_demand_per_municipality(year=2045) + demand = electricity_demand_per_municipality(year=2022) shares = [int(user_settings[key]) / 100 for key in ("s_v_3", "s_v_4", "s_v_5")] return demand.iloc[:] * shares