From 979bd0fc46892b732c32c9f2250ae35cf43ca755 Mon Sep 17 00:00:00 2001 From: Shay Carter Date: Tue, 19 Apr 2022 10:21:07 -0600 Subject: [PATCH 1/2] Small change to add DS.Y phensig - add new Dust Advisory to the vtec lookup table - ref: https://www.weather.gov/media/notification/pdfs/scn17-112snow_dustaad.pdf --- awips/tables.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awips/tables.py b/awips/tables.py index 3a7b3d7..bbd1845 100644 --- a/awips/tables.py +++ b/awips/tables.py @@ -1538,6 +1538,10 @@ vtec = { 'sig': 'W', 'color': 'bisque', 'hdln': 'Dust Storm Warning'}, + 'DS.Y' : {'phen': 'DS', + 'sig': 'Y', + 'color': 'darkkhaki' + 'hdln': 'Dust Advisory'}, 'DU.Y' : {'phen': 'DU', 'sig': 'Y', 'color': 'darkkhaki', From 3c32c850e6c960c8f033fc3d0c06e1e3db678068 Mon Sep 17 00:00:00 2001 From: Shay Carter Date: Tue, 19 Apr 2022 10:38:02 -0600 Subject: [PATCH 2/2] Update version number for new release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4a3cc1a..022a933 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ dependencies = ['numpy', 'six'] if sys.version_info < (3, 4): dependencies.append('enum34') -ver = "18.1.8" +ver = "18.1.9" setup( name='python-awips',