diff --git a/contrib/stack/topsStack/Stack.py b/contrib/stack/topsStack/Stack.py index 54603af..70a4845 100644 --- a/contrib/stack/topsStack/Stack.py +++ b/contrib/stack/topsStack/Stack.py @@ -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): diff --git a/contrib/stack/topsStack/stackSentinel.py b/contrib/stack/topsStack/stackSentinel.py index afb75e5..6dd8adb 100755 --- a/contrib/stack/topsStack/stackSentinel.py +++ b/contrib/stack/topsStack/stackSentinel.py @@ -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(' ***************** ')