From 27f22828f544ae02809cf9db86e577c2e312f457 Mon Sep 17 00:00:00 2001
From: "Daniel.Frisinghelli" <daniel.frisinghelli@eurac.edu>
Date: Tue, 28 Sep 2021 15:35:28 +0200
Subject: [PATCH] Added 2m dewpoint temperature to surface variables.

---
 climax/core/constants.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/climax/core/constants.py b/climax/core/constants.py
index 20f6762..39358c6 100644
--- a/climax/core/constants.py
+++ b/climax/core/constants.py
@@ -40,8 +40,9 @@ ERA5_P_VARIABLE_NAME = {k: v for k, v in zip(ERA5_P_VARIABLES,
 
 # ERA5 predictor variables on single levels
 ERA5_S_VARIABLES = ['mean_sea_level_pressure', 'orography', '2m_temperature',
-                    'total_precipitation', 'surface_pressure']
-ERA5_S_VARIABLES_SHORTCUT = ['mslp', 'o', 't2', 'pr', 'p']
+                    'total_precipitation', 'surface_pressure',
+                    '2m_dewpoint_temperature']
+ERA5_S_VARIABLES_SHORTCUT = ['mslp', 'o', 't2', 'pr', 'p', 't2d']
 ERA5_S_VARIABLE_NAME = {k: v for k, v in zip(ERA5_S_VARIABLES,
                                              ERA5_S_VARIABLES_SHORTCUT)}
 
-- 
GitLab