diff --git a/cave/com.raytheon.viz.avnconfig/localization/aviation/python/TafDecoder.py b/cave/com.raytheon.viz.avnconfig/localization/aviation/python/TafDecoder.py
index d3b93670e1..3ecb3b9e7a 100644
--- a/cave/com.raytheon.viz.avnconfig/localization/aviation/python/TafDecoder.py
+++ b/cave/com.raytheon.viz.avnconfig/localization/aviation/python/TafDecoder.py
@@ -321,6 +321,7 @@
# May 12, 2014 16928 zhao Modified check_prev_time()
# Sep 17, 2014 16928 zhao Added a line break "\n" to message 25 (since it appears together with message 49)
# Jul 07, 2015 16973 zhao Added 'DRSN' as valid value of sig weather
+# Mar 03, 2016 18664 zhao Fixed an indentation error in check_vsby_wx()
#
#
import exceptions, re, time, types
@@ -1117,11 +1118,11 @@ class Decoder(tpg.VerboseParser):
raise Error(_Errors[15])
if wx in ('DS', 'SS'):
if tok[0] in '+-':
- i = tok[0]
- else:
- i = ''
- if invalid_ds_vsby(i, vsby):
- raise Error(_Errors[55])
+ i = tok[0]
+ else:
+ i = ''
+ if invalid_ds_vsby(i, vsby):
+ raise Error(_Errors[55])
if snow == -1:
raise Error(_Errors[54])
else:
diff --git a/edexOsgi/com.raytheon.edex.plugin.radar/utility/common_static/base/radarInfo.txt b/edexOsgi/com.raytheon.edex.plugin.radar/utility/common_static/base/radarInfo.txt
index 22de5ecacb..160bfb462d 100755
--- a/edexOsgi/com.raytheon.edex.plugin.radar/utility/common_static/base/radarInfo.txt
+++ b/edexOsgi/com.raytheon.edex.plugin.radar/utility/common_static/base/radarInfo.txt
@@ -65,7 +65,7 @@
25 |16 |0 |0.25 |60 |V |Velocity |{S} {T} Velocity {B}bit ({U}) |{S} {T} Vel {B} |Radial |y | | | |V | | | | |1 |kts |
26 |16 |0 |0.50 |115 |V |Velocity |{S} {T} Velocity ({U}) |{S} {T} V |Radial |y | | | |V | | | | |1 |kts |
27 |16 |0 |1.00 |230 |V |Velocity |{S} {T} Velocity ({U}) |{S} {T} V |Radial |y | | | |V | | | | |1 |kts |
-184|256 |0 |0.15 |90 |SW |Spectrum Width |{S} {T} Spec Width ({U}) |{S} {T} Spec Width |Radial |y | | | | | | | | |2 |kts | y
+184|256 |0 |0.15 |90 |SW |Spec Width |{S} {T} Spectrum Width ({U}) {B}bit |{S} {T} SW {B}bit |Radial |y | | | |5m | | | | |2 |(m/s)/10| y
185|8 |0 |0.15 |90 |SW |Spectrum Width |{S} {T} Spec Width ({U}) |{S} {T} Spec Width |Radial |y | | | | | | | | |2 |kts |
28 |8 |0 |0.25 |60 |SW |Spectrum Width |{S} {T} Spectrum Width ({U}) {B}bit |{S} {T} SW {B}bit |Radial |y | | | | | | | | |2 |kts |
29 |8 |0 |0.50 |115 |SW |Spectrum Width |{S} {T} Spectrum Width ({U}) {B}bit |{S} {T} SW {B}bit |Radial |y | | | | | | | | |2 |kts |
diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/src/com/raytheon/uf/common/dataplugin/radar/RadarRecord.java b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/src/com/raytheon/uf/common/dataplugin/radar/RadarRecord.java
index fc49cee271..65f87a3a41 100644
--- a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/src/com/raytheon/uf/common/dataplugin/radar/RadarRecord.java
+++ b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/src/com/raytheon/uf/common/dataplugin/radar/RadarRecord.java
@@ -139,6 +139,7 @@ import com.vividsolutions.jts.geom.Coordinate;
* Nov 06, 2014 16776 zwang Handle AMDA product
* Mar 25, 2015 4319 bsteffen Add volume scan number.
* Sep 09, 2015 17568 wkwock Fix incorrect 8-bit SW display
+ * Mar 04, 2016 18731 wkwock Fix the TDWR 8-bit SW issues
*
*
*
@@ -913,7 +914,7 @@ public class RadarRecord extends PersistablePluginDataObject implements
nLevels = 255;
}
double[] pix = { 256 - nLevels, 255 };
- if (getProductCode() == 155) {
+ if ((getProductCode() == 155) || (getProductCode() == 184)) {
pix = new double[] { 129, 171 };
} else if(getProductCode() == 32) {
pix = new double[]{ 2, 256 };
diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/RadarUpperText.xml b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/RadarUpperText.xml
index 9fdac0cc2d..27b20a875c 100644
--- a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/RadarUpperText.xml
+++ b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/RadarUpperText.xml
@@ -84,6 +84,12 @@
+
+
+
+
+
+
diff --git a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/radarImageryStyleRules.xml b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/radarImageryStyleRules.xml
index ac0241fd47..a47962b07f 100644
--- a/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/radarImageryStyleRules.xml
+++ b/edexOsgi/com.raytheon.uf.common.dataplugin.radar/utility/common_static/base/styleRules/radarImageryStyleRules.xml
@@ -113,6 +113,7 @@
155
+ 184
kts