2023-03-06 08:27:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2024-02-19 15:21:48 +00:00
|
|
|
# SPDX-FileCopyrightText: : 2021-2024 The PyPSA-Eur Authors
|
2023-03-06 17:49:23 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
2021-11-29 08:12:55 +00:00
|
|
|
"""
|
2023-03-09 11:45:43 +00:00
|
|
|
Retrieve and extract data bundle for sector-coupled studies.
|
2021-11-29 08:12:55 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import tarfile
|
|
|
|
from pathlib import Path
|
|
|
|
|
2024-02-10 16:22:01 +00:00
|
|
|
from _helpers import (
|
|
|
|
configure_logging,
|
|
|
|
progress_retrieve,
|
|
|
|
set_scenario_config,
|
2024-02-10 16:22:36 +00:00
|
|
|
validate_checksum,
|
2024-02-10 16:22:01 +00:00
|
|
|
)
|
2021-11-29 08:12:55 +00:00
|
|
|
|
2024-01-19 09:47:58 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2021-11-29 08:12:55 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2023-05-12 11:59:41 +00:00
|
|
|
if "snakemake" not in globals():
|
|
|
|
from _helpers import mock_snakemake
|
|
|
|
|
|
|
|
snakemake = mock_snakemake("retrieve_databundle")
|
|
|
|
rootpath = ".."
|
|
|
|
else:
|
|
|
|
rootpath = "."
|
2021-11-29 08:12:55 +00:00
|
|
|
configure_logging(snakemake)
|
2023-08-15 13:02:41 +00:00
|
|
|
set_scenario_config(snakemake)
|
2021-11-29 08:12:55 +00:00
|
|
|
|
2022-01-06 09:29:59 +00:00
|
|
|
url = "https://zenodo.org/record/5824485/files/pypsa-eur-sec-data-bundle.tar.gz"
|
2021-11-29 08:12:55 +00:00
|
|
|
|
2023-05-12 11:59:41 +00:00
|
|
|
tarball_fn = Path(f"{rootpath}/sector-bundle.tar.gz")
|
2023-05-12 12:10:04 +00:00
|
|
|
to_fn = Path(rootpath) / Path(snakemake.output[0]).parent.parent
|
2021-11-29 08:12:55 +00:00
|
|
|
|
|
|
|
logger.info(f"Downloading databundle from '{url}'.")
|
2023-03-07 19:37:47 +00:00
|
|
|
disable_progress = snakemake.config["run"].get("disable_progressbar", False)
|
|
|
|
progress_retrieve(url, tarball_fn, disable=disable_progress)
|
2021-11-29 08:12:55 +00:00
|
|
|
|
2023-12-29 11:34:14 +00:00
|
|
|
validate_checksum(tarball_fn, url)
|
|
|
|
|
2023-03-07 16:21:00 +00:00
|
|
|
logger.info("Extracting databundle.")
|
2021-11-29 08:12:55 +00:00
|
|
|
tarfile.open(tarball_fn).extractall(to_fn)
|
|
|
|
|
|
|
|
tarball_fn.unlink()
|
|
|
|
|
|
|
|
logger.info(f"Databundle available in '{to_fn}'.")
|