From a5dd712424718ad1deadd2c2870ff85fedff9d45 Mon Sep 17 00:00:00 2001 From: Philipp Glaum Date: Wed, 16 Mar 2022 09:28:46 +0100 Subject: [PATCH] Snakefile: download newer load data file --- Snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snakefile b/Snakefile index 1550e023..8c1d6963 100644 --- a/Snakefile +++ b/Snakefile @@ -68,7 +68,7 @@ if config['enable'].get('retrieve_databundle', True): rule retrieve_load_data: - input: HTTP.remote("data.open-power-system-data.org/time_series/2019-06-05/time_series_60min_singleindex.csv", keep_local=True, static=True) + input: HTTP.remote("data.open-power-system-data.org/time_series/2020-10-06/time_series_60min_singleindex.csv", keep_local=True, static=True) output: "data/load_raw.csv" run: move(input[0], output[0])