Data accompanying "European wind and solar power generation variability over a century"
- 1. ETH Zurich
- 2. University of Reading
- 3. TU Delft & ETH Zurich
Description
Data accompanying "European wind and solar power generation variability over a century"
We provide wind and solar wind power generation on a gridbox level as netcdf files and country level generation timeseries as a dictionary of pandas timeseries. Due to storage size limitation, only the ensemble means are available.
The data is compressed and needs to be unzipped first.
The folder Solar contains three subfolders, each representing one panel orientation scenario. For each scenario, data is available from 1901 to 2009 in seperate files. Each file contains 3h data on the CERA20C grid over Europe.
The folder Wind contains three subfolders, each representing different wind turbines. Data is available from summer 1905 to 2005. The wind data does not cover the same time period as the solar data because we only report it where the Lanczos filter is fully defined and this leads to a shorter covered timeperiod.
The folder countrygroup contains a pickled dictionary of generation timeseries in the country groups defined in the publication. It is structured as follows:
1)
country_generation['seasonal']
is based on monthly mean generation from 1980 to 2000 while
country_generation['multidecadal']
is based on 20 year running mean generation that is available from 1917 to 1996.
2) For both timescales ('seasonal' and 'multidecadal'), data is available for each of the country groups defined in Table 1 of the publication.
3) For each country group and timescale, generation data is available seperately for wind and solar power. For illustration,
For illustration,
country_generation['multidecadal']['Portugal, Spain']['wind']
contains 20 year running means of wind power generation in Portugal and Spain covering 1917 to 1996.
The dictionary can be loaded in python as
import pickle
BASE_PATH = "" # add path to data
with open(BASE_PATH + "country_generation.pickle", "rb") as handle:
country_generation = pickle.load(handle)
Input data from centennial reanalyses
Our work relies on input data from the National Oceanic and Atmospheric Administration (NOAA) and the Cooperative Institute for Research in Environmental Sciences (CIRES), and the European Centre for Medium Range Weather Prediction (ECMWF). We use the centennial reanalyses 20CRv3 from NOAA-CIRES and CERA20C from ECMWF. For a documentation of the datasets please read:
Slivinski, L. C. et al. Towards a more reliable historical reanalysis: Improvements for version 3 of the Twentieth Century Reanalysis system. Q.J.R. Meteorol. Soc. qj.3598 (2019).
Laloyaux, P. et al. CERA-20C: A Coupled Reanalysis of the Twentieth Century. J. Adv. Model. Earth Syst. 10, 1172–1195 (2018).