We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d3fc1e commit cb19376Copy full SHA for cb19376
pyart/io/_sigmetfile.pyx
@@ -218,7 +218,7 @@ cdef class SigmetFile:
218
# The IRIS Programmer's Manual indicates 1-byte differential phase format
219
# data should be divided by the wavelength in cm (section 4.3.12).
220
wavelength_cm = self.product_hdr['product_end']['wavelength']
221
- data['KDP'] /= wavelength_cm
+ data['KDP'] /= (wavelength_cm / 100.0)
222
return data, metadata
223
224
def _get_sweep(self, full_xhdr=False, raw_data=False):
0 commit comments