skip MD for synthetic load data
This commit is contained in:
parent
46710c83db
commit
4ceb397de0
@ -312,7 +312,7 @@ if __name__ == "__main__":
|
|||||||
fn = snakemake.input.synthetic
|
fn = snakemake.input.synthetic
|
||||||
synthetic_load = pd.read_csv(fn, index_col=0, parse_dates=True)
|
synthetic_load = pd.read_csv(fn, index_col=0, parse_dates=True)
|
||||||
# "UA" does not appear in synthetic load data
|
# "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]
|
synthetic_load = synthetic_load.loc[snapshots, countries]
|
||||||
load = load.combine_first(synthetic_load)
|
load = load.combine_first(synthetic_load)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user