This repository hosts the copernicus-seasonal-forecast-tools, a Python package developed to manage seasonal forecast data from the Copernicus Climate Data Store (CDS) as part of the U-CLIMADAPT project.
It offers comprehensive tools for downloading, processing, computing climate indices, and generating hazard objects based on seasonal forecast datasets, particularly Seasonal forecast daily and subdaily data on single levels. The package is tailored to integrate seamlessly with the CLIMADA (CLIMate ADAptation) platform, supporting climate risk assessment and the development of effective adaptation strategies.
Users can:
- Automatically download of high-resolution seasonal forecast data via the CDS API
- Preprocess sub-daily fields into daily aggregates
- Compute heat-related indices (e.g., heatwave days, tropical nights, TX30)
- Generate CLIMADA hazard objects
- Benefit from the modular design for extending to new indices or forecast products
For full documentation of all features and functions, please refer to the Copernicus Seasonal Forecast Tools documentation on ReadTheDocs.
To use this package, you must first configure access to the Copernicus Climate Data Store (CDS), which provides the seasonal forecast datasets.
We've prepared a comprehensive CDS API setup guide to walk you through each step of the process. Once configured, you'll be ready to explore and analyze seasonal forecast data.
The package requires Python 3.10, 3.11 or 3.12. Make sure your environment is using a compatible Python version before installation.
You can install copernicus-seasonal-forecast-tools in different ways, depending on your setup and preferences. Below we describe the installation using the package manager and environment management system Conda.
Note: If you want to generate CLIMADA hazard objects, you must install the optional CLIMADA dependency.
For full installation instructions, see the online documentation.
conda create -c conda-forge -n copernicus_with python=3.11 pip climada
conda activate copernicus_with
pip install copernicus-seasonal-forecast-toolsconda create -c conda-forge -n copernicus_without python=3.11 pip geopandas
conda activate copernicus_without
pip install copernicus-seasonal-forecast-toolsconda create -c conda-forge -n copernicus-dev-mode python=3.11 pip geopandas climada
conda activate copernicus-dev-mode
git clone https://github.com/DahyannAraya/copernicus-seasonal-forecast-tools.git
cd copernicus-seasonal-forecast-tools
pip install -e .CLIMADA is required to generate hazard layers. If you installed the package without CLIMADA you can install CLIMADA later on with
conda install climadaIf you want to customize the CLIMADA installation, follow the Advanced Instructions of the CLIMADA installation guide.
This section provides practical example to help users understand how to work with the copernicus-seasonal-forecast-tools package. The notebooks demonstrate key steps including downloading data, computing climate indices, and generating CLIMADA hazard objects.
- DEMO_copernicus_forecast_seasonal.ipynb: This is the first notebook to run. It demonstrates how to install and use the
seasonal_forecast_toolsto download, process, and convert seasonal forecast data into a CLIMADA hazard object.
| Notebook | Open in Colab | GitHub (Documentation) |
|---|---|---|
| DEMO Copernicus Seasonal Forecast | View in Docs | |
| Download and Process Data | View in Docs | |
| Calculate Climate Indices | View in Docs | |
| Calculate a Hazard Object | View in Docs | |
| Example for Reading and Plotting Hazard | View in Docs |
You can find further material in , where we provide an extended demonstration.
This section summarizes how to contribute and where to find more information. We follow the CLIMADA contribution workflow and conventions. See details in CONTRIBUTING.md.

