retrieve electricity demand: use script in order to concat time-series

This commit is contained in:
Fabian 2023-08-16 11:41:48 +02:00 committed by Fabian Neumann
parent cbb3ab36a6
commit 5c7bbcd94d
2 changed files with 39 additions and 14 deletions

View File

@ -188,18 +188,6 @@ if config["enable"]["retrieve"]:
if config["enable"]["retrieve"]: if config["enable"]["retrieve"]:
rule retrieve_electricity_demand: rule retrieve_electricity_demand:
input:
HTTP.remote(
"data.open-power-system-data.org/time_series/{version}/time_series_60min_singleindex.csv".format(
version=(
"2019-06-05"
if config["snapshots"]["end"] < "2019"
else "2020-10-06"
)
),
keep_local=True,
static=True,
),
output: output:
RESOURCES + "load_raw.csv", RESOURCES + "load_raw.csv",
log: log:
@ -207,8 +195,8 @@ if config["enable"]["retrieve"]:
resources: resources:
mem_mb=5000, mem_mb=5000,
retries: 2 retries: 2
run: script:
move(input[0], output[0]) "../scripts/retrieve_electricity_demand.py"
if config["enable"]["retrieve"]: if config["enable"]["retrieve"]:

View File

@ -0,0 +1,37 @@
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors
#
# SPDX-License-Identifier: MIT
"""
Retrieve monthly fuel prices from Destatis.
"""
import logging
import pandas as pd
logger = logging.getLogger(__name__)
from pathlib import Path
from _helpers import configure_logging, set_scenario_config
if __name__ == "__main__":
if "snakemake" not in globals():
from _helpers import mock_snakemake
snakemake = mock_snakemake("retrieve_eletricity_demand")
rootpath = ".."
else:
rootpath = "."
configure_logging(snakemake)
set_scenario_config(snakemake)
versions = ["2019-06-05", "2020-10-06"]
url = "https://data.open-power-system-data.org/time_series/{version}/time_series_60min_singleindex.csv"
df1, df2 = [
pd.read_csv(url.format(version=version), index_col=0) for version in versions
]
res = pd.concat([df1, df2[df2.index > df1.index[-1]]], join="inner")
res.to_csv(snakemake.output[0])