Skip to content

Commit

Permalink
skip MD for synthetic load data
Browse files Browse the repository at this point in the history
  • Loading branch information
fneum authored Jun 4, 2024
1 parent 46710c8 commit 4ceb397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_electricity_demand.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def manual_adjustment(load, fn_load, countries):
fn = snakemake.input.synthetic
synthetic_load = pd.read_csv(fn, index_col=0, parse_dates=True)
# "UA" does not appear in synthetic load data
countries = list(set(countries) - set(["UA"]))
countries = list(set(countries) - set(["UA", "MD"]))
synthetic_load = synthetic_load.loc[snapshots, countries]
load = load.combine_first(synthetic_load)

Expand Down

0 comments on commit 4ceb397

Please sign in to comment.