From 4ceb397de0a56e1d57686dc9430f7baee5f5859d Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Tue, 4 Jun 2024 13:56:54 +0200 Subject: [PATCH] skip MD for synthetic load data --- scripts/build_electricity_demand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_electricity_demand.py b/scripts/build_electricity_demand.py index fc8af372..622fdafa 100755 --- a/scripts/build_electricity_demand.py +++ b/scripts/build_electricity_demand.py @@ -312,7 +312,7 @@ if __name__ == "__main__": 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)