Skip to content

Commit

Permalink
Add second version string to correct data path
Browse files Browse the repository at this point in the history
Currently data is stored in a folder that has a version number on it. It would be better to remove this so the files being read won't be dependent on this numbering system but instead should only depend on version name.
  • Loading branch information
measrainsey committed Oct 22, 2024
1 parent 329f4e8 commit 43a55a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion message_ix_buildings/chilled/postprocess/postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,4 @@ def postprocess_electricity_demand(input_path, input_version_name):
)


postprocess_electricity_demand(dle_path, cfg.vstr)
postprocess_electricity_demand(dle_path, cfg.vstr2 + "_" + cfg.vstr)
1 change: 1 addition & 0 deletions message_ix_buildings/chilled/util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Config:
#:
#: This is used to name the output files and directories.
vstr: str = "ALPS2023"
vstr2 = "v19"

#: Select the climate model.
#:
Expand Down

0 comments on commit 43a55a2

Please sign in to comment.