Skip to content

Commit cb19376

Browse files
authored
FIX: Fix for wavelength not being converted 1/100 (#1712)
1 parent 3d3fc1e commit cb19376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyart/io/_sigmetfile.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ cdef class SigmetFile:
218218
# The IRIS Programmer's Manual indicates 1-byte differential phase format
219219
# data should be divided by the wavelength in cm (section 4.3.12).
220220
wavelength_cm = self.product_hdr['product_end']['wavelength']
221-
data['KDP'] /= wavelength_cm
221+
data['KDP'] /= (wavelength_cm / 100.0)
222222
return data, metadata
223223

224224
def _get_sweep(self, full_xhdr=False, raw_data=False):

0 commit comments

Comments
 (0)