Skip to content

Commit

Permalink
resolve merge error in egon/data/datasets/heat_demand/__init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
khelfen committed Dec 27, 2024
1 parent 70fa6b4 commit 5b90e76
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/egon/data/datasets/heat_demand/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class HeatDemandImport(Dataset):
#:
name: str = "heat-demands"
#:
version: str = "0.0.1"
version: str = "0.0.2"

def __init__(self, dependencies):
super().__init__(
Expand Down Expand Up @@ -751,12 +751,14 @@ def scenario_data_import():
unzip_peta5_0_1_heat_demands()
cutout_heat_demand_germany()
# Specifiy the scenario names for loading factors from csv file
future_heat_demand_germany("eGon2035")
future_heat_demand_germany("eGon100RE")
for scenario in egon.data.config.settings()["egon-data"]["--scenarios"]:
future_heat_demand_germany(scenario)

# future_heat_demand_germany("eGon2015")
heat_demand_to_db_table()
adjust_residential_heat_to_zensus("eGon2035")
adjust_residential_heat_to_zensus("eGon100RE")
for scenario in egon.data.config.settings()["egon-data"]["--scenarios"]:
adjust_residential_heat_to_zensus(scenario)

# future_heat_demand_germany("eGon2015")
add_metadata()

Expand Down

0 comments on commit 5b90e76

Please sign in to comment.