Describe the bugariaTSsetup.py errors out when the 'all' argument is passed to layers. This is caused by ariaTSsetup.py attempting to extract the 'lookAngle' and 'bPerpendicluar' layers, which are not part of the ARIA_STACK_OUTFILES, causing an Exception to be raised.
Instead of erroring out, ariaTSsetup.py should raise a warning and continue processing the other "stack" products.
Describe the bug
ariaTSsetup.py
errors out when the 'all' argument is passed to layers. This is caused by ariaTSsetup.py attempting to extract the 'lookAngle' and 'bPerpendicluar' layers, which are not part of theARIA_STACK_OUTFILES
, causing an Exception to be raised.Instead of erroring out, ariaTSsetup.py should raise a warning and continue processing the other "stack" products.
To Reproduce Steps to reproduce the behavior:
Expected behavior Skip the non-stack product and process the rest. Prefer to raise
LOGGER.warning
and continue.