From 41f4b161e82aaa4e0b9f14e91eaeaf60bd18d8d8 Mon Sep 17 00:00:00 2001 From: "Samantha C. Niemoeller" Date: Wed, 17 Jun 2026 12:42:25 -0700 Subject: [PATCH] Update metadata description per specs --- python/packages/nisar/products/writers/SLC.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/packages/nisar/products/writers/SLC.py b/python/packages/nisar/products/writers/SLC.py index 257cceeae..99273ac9d 100644 --- a/python/packages/nisar/products/writers/SLC.py +++ b/python/packages/nisar/products/writers/SLC.py @@ -84,9 +84,9 @@ def add_cal_layer(group: h5py.Group, lut: LUT2d, name: str, # C++ API doesn't add descriptions... group[xname].attrs["description"] = np.bytes_("Slant range " "dimension corresponding to processing information records") - group[yname].attrs["description"] = np.bytes_("Zero Doppler time " - "since UTC epoch dimension corresponding to processing information " - "records") + group[yname].attrs["description"] = np.bytes_("Vector of zero Doppler " + "azimuth times, measured relative to a UTC epoch, corresponding to " + "processing information records") group[name].attrs["description"] = np.bytes_(description) else: raise IOError(f"Found only one of {xname} or {yname}."