Skip to content
Snippets Groups Projects
Commit 261502f1 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Split ERA5 variables: pressure levels and single levels.

parent f089fcbb
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,12 @@ EUROCORDEX_RCMS = ['SMHI-RCA4', 'CLMcom-CCLM4-8-17', ...@@ -31,6 +31,12 @@ EUROCORDEX_RCMS = ['SMHI-RCA4', 'CLMcom-CCLM4-8-17',
# climate data operator (cdo) resampling modes # climate data operator (cdo) resampling modes
CDO_RESAMPLING_MODES = ['bilinear', 'conservative'] CDO_RESAMPLING_MODES = ['bilinear', 'conservative']
# ERA5 variables to use for the downscaling # ERA5 variables on pressure levels
ERA5_VARIABLES = ['geopotential', 'temperature', 'u_component_of_wind', ERA5_P_VARIABLES = ['geopotential', 'temperature', 'u_component_of_wind',
'v_component_of_wind', 'specific_humidity'] 'v_component_of_wind', 'specific_humidity', 'msl']
# ERA5 variables on single levels
ERA5_S_VARIABLES = ['msl']
# ERA5 variables
ERA5_VARIABLES = ERA5_P_VARIABLES + ERA5_S_VARIABLES
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment