bugfix in stripmapStack/Stack for config unwIfg if filter is turned off

If filter is turned OFF while unwrapping is still ON, the phase unwrapping output filename should not include "filt_" prefix.
LT1AB
Zhang Yunjun 2020-05-06 23:19:13 -07:00 committed by piyushrpt
parent af5a8540f9
commit 35a80f0a5f
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ class run(object):
# skip phase unwrapping if input method == no
if self.unwMethod.lower() != 'no':
configObj.igram = configObj.filtIgram
configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1]
configObj.unwIfg = os.path.splitext(configObj.igram)[0]
configObj.noMCF = noMCF
configObj.master = os.path.join(self.slcDir,stackMaster +'/data')
configObj.defoMax = defoMax