From d8150831a395e138191f9bddc68b3e5bb79c59aa Mon Sep 17 00:00:00 2001 From: Zhang Yunjun Date: Thu, 1 Dec 2022 17:21:17 -0800 Subject: [PATCH] bugfix in Sentinel1BurstSlc.swath_name() --- src/s1reader/s1_burst_slc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s1reader/s1_burst_slc.py b/src/s1reader/s1_burst_slc.py index 2c68330a..022df0a1 100644 --- a/src/s1reader/s1_burst_slc.py +++ b/src/s1reader/s1_burst_slc.py @@ -668,7 +668,7 @@ def width(self): @property def swath_name(self): '''Swath name in iw1, iw2, iw3.''' - return self.burst_id.swath_name + return self.burst_id.subswath.lower() @property def thermal_noise_lut(self):