├── .gitignore ├── README.md ├── batch.config ├── cat_s1.py ├── delete_intf_extras.sh ├── gmtsar_app.py ├── gmtsar_func.py ├── gmtsar_functions ├── align.csh ├── align_batch.csh ├── filter.csh ├── focus_master.csh ├── geocode_sbas.csh ├── gmtsar_sharedir.csh ├── goldstein_filter.csh ├── grd_io.py ├── intf_batch.csh ├── intf_tops.csh ├── landmask_manual.csh ├── nneigh_interp.py ├── pre_proc_batch.csh ├── preproc_batch_tops_esd.csh ├── proj_ra2ll_hi.csh ├── run_sbas.csh ├── snaphu_interp.csh └── topo_ra.csh ├── mpi4py_map.py ├── pbs ├── run_cat_s1.pbs ├── run_gmtsar_app.pbs ├── run_gmtsar_app_mpi.pbs └── run_make_giant_package.pbs ├── run_cat_s1.sh ├── run_gmtsar_app.csh ├── s1_func.py ├── scripts ├── alos_links.sh ├── get_s1_orbit.py ├── grd_pad.sh ├── intf_pad.sh ├── make_giant_package.sh ├── make_los_products.csh ├── plan_intf_list.py ├── plot_intf_list.py ├── print_matching_eof.py ├── test_mp.py └── test_s1_orbit.py ├── setup_alos2.csh ├── setup_alos2_args.csh ├── setup_gmtsar_app.sh ├── setup_tops.csh ├── todo.txt └── unzip_s1.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/README.md -------------------------------------------------------------------------------- /batch.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/batch.config -------------------------------------------------------------------------------- /cat_s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/cat_s1.py -------------------------------------------------------------------------------- /delete_intf_extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/delete_intf_extras.sh -------------------------------------------------------------------------------- /gmtsar_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_app.py -------------------------------------------------------------------------------- /gmtsar_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_func.py -------------------------------------------------------------------------------- /gmtsar_functions/align.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/align.csh -------------------------------------------------------------------------------- /gmtsar_functions/align_batch.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/align_batch.csh -------------------------------------------------------------------------------- /gmtsar_functions/filter.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/filter.csh -------------------------------------------------------------------------------- /gmtsar_functions/focus_master.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/focus_master.csh -------------------------------------------------------------------------------- /gmtsar_functions/geocode_sbas.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/geocode_sbas.csh -------------------------------------------------------------------------------- /gmtsar_functions/gmtsar_sharedir.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/gmtsar_sharedir.csh -------------------------------------------------------------------------------- /gmtsar_functions/goldstein_filter.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/goldstein_filter.csh -------------------------------------------------------------------------------- /gmtsar_functions/grd_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/grd_io.py -------------------------------------------------------------------------------- /gmtsar_functions/intf_batch.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/intf_batch.csh -------------------------------------------------------------------------------- /gmtsar_functions/intf_tops.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/intf_tops.csh -------------------------------------------------------------------------------- /gmtsar_functions/landmask_manual.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/landmask_manual.csh -------------------------------------------------------------------------------- /gmtsar_functions/nneigh_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/nneigh_interp.py -------------------------------------------------------------------------------- /gmtsar_functions/pre_proc_batch.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/pre_proc_batch.csh -------------------------------------------------------------------------------- /gmtsar_functions/preproc_batch_tops_esd.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/preproc_batch_tops_esd.csh -------------------------------------------------------------------------------- /gmtsar_functions/proj_ra2ll_hi.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/proj_ra2ll_hi.csh -------------------------------------------------------------------------------- /gmtsar_functions/run_sbas.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/run_sbas.csh -------------------------------------------------------------------------------- /gmtsar_functions/snaphu_interp.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/snaphu_interp.csh -------------------------------------------------------------------------------- /gmtsar_functions/topo_ra.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/gmtsar_functions/topo_ra.csh -------------------------------------------------------------------------------- /mpi4py_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/mpi4py_map.py -------------------------------------------------------------------------------- /pbs/run_cat_s1.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/pbs/run_cat_s1.pbs -------------------------------------------------------------------------------- /pbs/run_gmtsar_app.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/pbs/run_gmtsar_app.pbs -------------------------------------------------------------------------------- /pbs/run_gmtsar_app_mpi.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/pbs/run_gmtsar_app_mpi.pbs -------------------------------------------------------------------------------- /pbs/run_make_giant_package.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/pbs/run_make_giant_package.pbs -------------------------------------------------------------------------------- /run_cat_s1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/run_cat_s1.sh -------------------------------------------------------------------------------- /run_gmtsar_app.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/run_gmtsar_app.csh -------------------------------------------------------------------------------- /s1_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/s1_func.py -------------------------------------------------------------------------------- /scripts/alos_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/alos_links.sh -------------------------------------------------------------------------------- /scripts/get_s1_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/get_s1_orbit.py -------------------------------------------------------------------------------- /scripts/grd_pad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/grd_pad.sh -------------------------------------------------------------------------------- /scripts/intf_pad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/intf_pad.sh -------------------------------------------------------------------------------- /scripts/make_giant_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/make_giant_package.sh -------------------------------------------------------------------------------- /scripts/make_los_products.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/make_los_products.csh -------------------------------------------------------------------------------- /scripts/plan_intf_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/plan_intf_list.py -------------------------------------------------------------------------------- /scripts/plot_intf_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/plot_intf_list.py -------------------------------------------------------------------------------- /scripts/print_matching_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/print_matching_eof.py -------------------------------------------------------------------------------- /scripts/test_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/test_mp.py -------------------------------------------------------------------------------- /scripts/test_s1_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/scripts/test_s1_orbit.py -------------------------------------------------------------------------------- /setup_alos2.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/setup_alos2.csh -------------------------------------------------------------------------------- /setup_alos2_args.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/setup_alos2_args.csh -------------------------------------------------------------------------------- /setup_gmtsar_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/setup_gmtsar_app.sh -------------------------------------------------------------------------------- /setup_tops.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/setup_tops.csh -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/todo.txt -------------------------------------------------------------------------------- /unzip_s1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlindsey/automate-gmtsar/HEAD/unzip_s1.py --------------------------------------------------------------------------------