From 196e28760045e5763f034eeb7b5196f9006083c9 Mon Sep 17 00:00:00 2001 From: Bill Ladwig Date: Fri, 16 Mar 2018 10:05:18 -0600 Subject: [PATCH] Added th alias for theta. Fixes #52. --- src/wrf/routines.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wrf/routines.py b/src/wrf/routines.py index 5442956..f3665fe 100644 --- a/src/wrf/routines.py +++ b/src/wrf/routines.py @@ -112,7 +112,7 @@ _VALID_KARGS = {"cape2d" : ["missing"], "wspd_wdir10" : ["units"], "uvmet_wspd_wdir" : ["units"], "uvmet10_wspd_wdir" : ["units"], - "ctt" : [], + "ctt" : ["fill_nocloud", "missing", "units"], "cloudfrac" : ["vert_type", "low_thresh", "mid_thresh", "high_thresh"], "geopt_stag" : [], @@ -138,7 +138,8 @@ _ALIASES = {"cape_2d" : "cape2d", "td2" : "dp2m", "cfrac" : "cloudfrac", "wspd_wdir_uvmet" : "uvmet_wspd_wdir", - "wspd_wdir_uvmet10" : "uvmet10_wspd_wdir" + "wspd_wdir_uvmet10" : "uvmet10_wspd_wdir", + "th" : "theta" } class ArgumentError(Exception):