bugfix in topsStack/Stack while writing config_unwrap for rmFilter option

stackSentinel: more msg in checkCurrentStatus()
LT1AB
yunjunz 2020-05-06 22:38:06 -07:00 committed by piyushrpt
parent 659a7ed6b0
commit af5a8540f9
2 changed files with 6 additions and 2 deletions

View File

@ -223,7 +223,10 @@ class config(object):
self.f.write('defomax : ' + self.defoMax + '\n')
self.f.write('rlks : ' + self.rangeLooks + '\n')
self.f.write('alks : ' + self.azimuthLooks + '\n')
self.f.write('rmfilter : ' + self.rmFilter + '\n')
if self.rmFilter:
self.f.write('rmfilter : True \n')
else:
self.f.write('rmfilter : False\n')
self.f.write('method : ' + self.unwMethod + '\n')
def unwrapSnaphu(self, function):

View File

@ -642,7 +642,8 @@ def checkCurrentStatus(inps):
print(' ***************** ')
print(' ********* ')
print('Warning:')
print('The stack already exists. No new acquisition found to update the stack.')
print('The stack already exists in: {}.'.format(coregSLCDir))
print('No new acquisition found to update the stack.')
print('')
print(' ********* ')
print(' ***************** ')