From 278902fd1be1401bb9df8a90cb895a3441dcc92c Mon Sep 17 00:00:00 2001 From: Vincent Schut Date: Thu, 10 Sep 2020 21:34:17 +0200 Subject: [PATCH] make sure the orbit file glob also finds files starting with S1B (#190) --- components/isceobj/Sensor/GRD/Sentinel1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/isceobj/Sensor/GRD/Sentinel1.py b/components/isceobj/Sensor/GRD/Sentinel1.py index b910885..91d9a1c 100755 --- a/components/isceobj/Sensor/GRD/Sentinel1.py +++ b/components/isceobj/Sensor/GRD/Sentinel1.py @@ -467,7 +467,7 @@ class Sentinel1(Component): timeStamp = self.product.sensingStart+(self.product.sensingStop - self.product.sensingStart)/2. for orbType in types: - files = glob.glob( os.path.join(self.orbitDir, 'S1A_OPER_AUX_' + orbType + '_OPOD*')) + files = glob.glob( os.path.join(self.orbitDir, 'S1?_OPER_AUX_' + orbType + '_OPOD*')) filelist.extend(files) ###List all orbit files