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
parent
af5a8540f9
commit
35a80f0a5f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue