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', 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',