diff --git a/python/packages/nisar/products/writers/BaseL2WriterSingleInput.py b/python/packages/nisar/products/writers/BaseL2WriterSingleInput.py index c53318027..06faed483 100644 --- a/python/packages/nisar/products/writers/BaseL2WriterSingleInput.py +++ b/python/packages/nisar/products/writers/BaseL2WriterSingleInput.py @@ -2103,6 +2103,11 @@ def geocode_metadata_group(self, else: new_var_array = noise_product.power_linear + # Ensure that the `noiseEquivalentBackscatter` LUT + # is computed and stored as float32 + # to match NISAR product specifications + new_var_array = new_var_array.astype(np.float32) + temp_file = tempfile.NamedTemporaryFile(dir=scratch_path, suffix='.bin') length, width = new_var_array.shape