GeoscienceAustralia / ga_sar_workflow

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

Small consistency cleanup - ALOS luigi module #347

Open truth-quark opened 2 years ago

truth-quark commented 2 years ago

In insar/workflow/luigi/, the workflow module for ALOS is called "process_alos.py`. The other sensors are just the sensor name, so there's a minor name inconsistency here for the module and the imports:

$ grep -rn --include="*.py" "process_alos" insar/
insar/process_alos_slc.py:313:def process_alos_slc(
insar/workflow/luigi/multilook.py:82:            from insar.workflow.luigi.process_alos import CreateALOSSlcTasks
insar/workflow/luigi/process_alos.py:14:from insar.process_alos_slc import process_alos_slc
insar/workflow/luigi/process_alos.py:58:        process_alos_slc(
insar/workflow/luigi/resume.py:28:from insar.workflow.luigi.process_alos import ProcessALOSSlc

The multilook and resume modules use the longer module name for imports.