skip MD for synthetic load data

This commit is contained in:
Fabian Neumann 2024-06-04 13:56:54 +02:00 committed by GitHub
parent 46710c83db
commit 4ceb397de0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)