Skip to content

Commit

Permalink
FIX: Fix for wavelength not being converted 1/100 (#1712)
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman authored Dec 18, 2024
1 parent 3d3fc1e commit cb19376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyart/io/_sigmetfile.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ cdef class SigmetFile:
# The IRIS Programmer's Manual indicates 1-byte differential phase format
# data should be divided by the wavelength in cm (section 4.3.12).
wavelength_cm = self.product_hdr['product_end']['wavelength']
data['KDP'] /= wavelength_cm
data['KDP'] /= (wavelength_cm / 100.0)
return data, metadata

def _get_sweep(self, full_xhdr=False, raw_data=False):
Expand Down

0 comments on commit cb19376

Please sign in to comment.