From 479e0a0d8620eacdc9b880b7db37e08b378b47b4 Mon Sep 17 00:00:00 2001 From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu> Date: Mon, 27 Sep 2021 16:29:33 +0200 Subject: [PATCH] Change filenames for precipitation. --- climax/main/config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/climax/main/config.py b/climax/main/config.py index b953f17..42baad4 100644 --- a/climax/main/config.py +++ b/climax/main/config.py @@ -24,8 +24,9 @@ ERA5_P_PREDICTORS = ['geopotential', 'temperature', 'u_component_of_wind', 'v_component_of_wind', 'specific_humidity'] assert all([var in ERA5_P_VARIABLES for var in ERA5_P_PREDICTORS]) -# # ERA5 predictor variables on single levels -ERA5_S_PREDICTORS = ['mean_sea_level_pressure', 'orography', '2m_temperature'] +# ERA5 predictor variables on single levels +# ERA5_S_PREDICTORS = ['mean_sea_level_pressure', 'orography', '2m_temperature'] +ERA5_S_PREDICTORS = ['mean_sea_level_pressure'] assert all([var in ERA5_S_VARIABLES for var in ERA5_S_PREDICTORS]) # ERA5 predictor variables @@ -38,7 +39,7 @@ ERA5_PLEVELS = [500, 850] DOY = False # use digital elevation model instead of model orography -DEM = False +DEM = True if DEM: # remove model orography when using DEM if 'orography' in ERA5_S_PREDICTORS: -- GitLab