GeoscienceAustralia / ga_sar_workflow

InSAR processing workflow used by Geoscience Australia
Apache License 2.0
3 stars 1 forks source link

Bug fixes from script runs #115

Closed truth-quark closed 3 years ago

truth-quark commented 4 years ago

Quick catalogue of bugs from Lan-Wei's test runs:

truth-quark commented 4 years ago

For fixing the shim bug with passing args to pygamma: https://github.com/GeoscienceAustralia/gamma_insar/blob/pygamma_workflow/insar/py_gamma_ga.py#L80

subprocess.run() needs separate args. To fix, replace with:

cmd_list = [cmd]
cmd_list.extend(str(a) for a in args)