├── .gitignore ├── LICENSE ├── README.md ├── bin ├── FastXML.py ├── email_finished.py ├── get_inventory_asf.py ├── index.html ├── indexTemplate.html ├── isce2aws.py ├── isce2cog.py ├── isce2overviews.py ├── plot_inventory_asf.py ├── prep_topsApp.py ├── prep_topsApp_aws.py ├── proc_batch_master.py ├── proc_batch_sequential.py ├── proc_ifg_cfn.py ├── proc_ifg_cfn_exp.py ├── proc_ifg_cfn_spot.py ├── process_interferogramEC2.py ├── run_interferogram.sh └── run_interferogram_docker.sh ├── docker └── readme.md ├── docs └── readme.md ├── s1batch └── readme.md └── s1single └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/README.md -------------------------------------------------------------------------------- /bin/FastXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/FastXML.py -------------------------------------------------------------------------------- /bin/email_finished.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/email_finished.py -------------------------------------------------------------------------------- /bin/get_inventory_asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/get_inventory_asf.py -------------------------------------------------------------------------------- /bin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/index.html -------------------------------------------------------------------------------- /bin/indexTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/indexTemplate.html -------------------------------------------------------------------------------- /bin/isce2aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/isce2aws.py -------------------------------------------------------------------------------- /bin/isce2cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/isce2cog.py -------------------------------------------------------------------------------- /bin/isce2overviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/isce2overviews.py -------------------------------------------------------------------------------- /bin/plot_inventory_asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/plot_inventory_asf.py -------------------------------------------------------------------------------- /bin/prep_topsApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/prep_topsApp.py -------------------------------------------------------------------------------- /bin/prep_topsApp_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/prep_topsApp_aws.py -------------------------------------------------------------------------------- /bin/proc_batch_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/proc_batch_master.py -------------------------------------------------------------------------------- /bin/proc_batch_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/proc_batch_sequential.py -------------------------------------------------------------------------------- /bin/proc_ifg_cfn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/proc_ifg_cfn.py -------------------------------------------------------------------------------- /bin/proc_ifg_cfn_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/proc_ifg_cfn_exp.py -------------------------------------------------------------------------------- /bin/proc_ifg_cfn_spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/proc_ifg_cfn_spot.py -------------------------------------------------------------------------------- /bin/process_interferogramEC2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/process_interferogramEC2.py -------------------------------------------------------------------------------- /bin/run_interferogram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/run_interferogram.sh -------------------------------------------------------------------------------- /bin/run_interferogram_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/bin/run_interferogram_docker.sh -------------------------------------------------------------------------------- /docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/docker/readme.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/docs/readme.md -------------------------------------------------------------------------------- /s1batch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/s1batch/readme.md -------------------------------------------------------------------------------- /s1single/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinoSARaws/HEAD/s1single/readme.md --------------------------------------------------------------------------------