Stack: skip PU if input method is "no"
parent
d41ffb0ce9
commit
34fb0b66fa
|
@ -598,12 +598,14 @@ class run(object):
|
||||||
#configObj.filtStrength = filtStrength
|
#configObj.filtStrength = filtStrength
|
||||||
configObj.filterCoherence('[Function-2]')
|
configObj.filterCoherence('[Function-2]')
|
||||||
|
|
||||||
configObj.igram = configObj.filtIgram
|
# skip phase unwrapping if input method == no
|
||||||
configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1]
|
if self.unwMethod.lower() != 'no':
|
||||||
configObj.noMCF = noMCF
|
configObj.igram = configObj.filtIgram
|
||||||
configObj.master = os.path.join(self.slcDir,stackMaster +'/data')
|
configObj.unwIfg = os.path.dirname(configObj.outDir) + '/filt_' + pair[0] + '_' + pair[1]
|
||||||
configObj.defoMax = defoMax
|
configObj.noMCF = noMCF
|
||||||
configObj.unwrap('[Function-3]')
|
configObj.master = os.path.join(self.slcDir,stackMaster +'/data')
|
||||||
|
configObj.defoMax = defoMax
|
||||||
|
configObj.unwrap('[Function-3]')
|
||||||
|
|
||||||
configObj.finalize()
|
configObj.finalize()
|
||||||
self.runf.write(self.text_cmd+'stripmapWrapper.py -c '+ configName+'\n')
|
self.runf.write(self.text_cmd+'stripmapWrapper.py -c '+ configName+'\n')
|
||||||
|
|
Loading…
Reference in New Issue