├── .DS_Store ├── .gitignore ├── .ipynb_checkpoints ├── README-checkpoint.md ├── docker_cmds-checkpoint.txt ├── download_hyp3_insar_data-checkpoint.ipynb ├── get_mintpy_window-checkpoint.ipynb ├── hyp3-checkpoint.cfg └── hyp3_mintpy-checkpoint.ipynb ├── README.md ├── asf_files ├── asc-lower-2021-11-05.geojson ├── asc-upper-2021-11-05.geojson ├── desc-lower-2021-11-05.geojson └── desc-upper-2021-11-05.geojson ├── configs ├── .ipynb_checkpoints │ ├── asc_lower-checkpoint.cfg │ ├── asc_upper-checkpoint.cfg │ ├── desc_lower-checkpoint.cfg │ └── desc_upper-checkpoint.cfg ├── asc_lower.cfg ├── asc_upper.cfg ├── desc_lower.cfg └── desc_upper.cfg ├── docker_cmds.txt ├── download_hyp3_insar_data.ipynb ├── get_mintpy_window.ipynb ├── hyp3.cfg ├── hyp3_mintpy.ipynb ├── identify_activity.ipynb ├── legacy ├── .ipynb_checkpoints │ ├── check_hyp3_scene_bounds-checkpoint.ipynb │ ├── create_water_mask-checkpoint.ipynb │ ├── determine_bounding-checkpoint.ipynb │ ├── download_hyp3_insar_data-checkpoint.ipynb │ ├── hyp3_mintpy-checkpoint.ipynb │ ├── hyp3_mintpy_network-checkpoint.ipynb │ ├── hyp3_to_same_window-checkpoint.ipynb │ └── merge_rasters-checkpoint.ipynb ├── check_hyp3_scene_bounds.ipynb ├── create_water_mask.ipynb ├── determine_bounding.ipynb ├── download_hyp3_insar_data.ipynb ├── hyp3_mintpy.ipynb ├── hyp3_mintpy_network.ipynb ├── hyp3_old.cfg ├── hyp3_to_same_window.ipynb ├── identify_activity_v1.ipynb ├── mask_and_combine_v1.ipynb ├── merge_rasters.ipynb ├── network_selection.ipynb └── regression_check.ipynb ├── mask_and_combine.ipynb └── waterbodies ├── Documents ├── Readme File SRTM Water Body Data.doc ├── SRTM Edit Rules v2.0 12 Mar 03.doc └── SWBD Product Specific Guidance v2.0 12 Mar 03jas.doc ├── e171s42i.dbf ├── e171s42i.shp ├── e171s42i.shx ├── e172s41i.dbf ├── e172s41i.shp ├── e172s41i.shx ├── e172s42i.dbf ├── e172s42i.shp ├── e172s42i.shx ├── e173s36i.dbf ├── e173s36i.shp ├── e173s36i.shx ├── e173s37i.dbf ├── e173s37i.shp ├── e173s37i.shx ├── e173s40i.dbf ├── e173s40i.shp ├── e173s40i.shx ├── e173s41i.dbf ├── e173s41i.shp ├── e173s41i.shx ├── e173s42i.dbf ├── e173s42i.shp ├── e173s42i.shx ├── e174s36i.dbf ├── e174s36i.shp ├── e174s36i.shx ├── e174s37i.dbf ├── e174s37i.shp ├── e174s37i.shx ├── e174s38i.dbf ├── e174s38i.shp ├── e174s38i.shx ├── e174s39i.dbf ├── e174s39i.shp ├── e174s39i.shx ├── e174s40i.dbf ├── e174s40i.shp ├── e174s40i.shx ├── e174s41i.dbf ├── e174s41i.shp ├── e174s41i.shx ├── e174s42i.dbf ├── e174s42i.shp ├── e174s42i.shx ├── e175s36i.dbf ├── e175s36i.shp ├── e175s36i.shx ├── e175s37i.dbf ├── e175s37i.shp ├── e175s37i.shx ├── e175s38i.dbf ├── e175s38i.shp ├── e175s38i.shx ├── e175s39i.dbf ├── e175s39i.shp ├── e175s39i.shx ├── e175s40i.dbf ├── e175s40i.shp ├── e175s40i.shx ├── e175s41i.dbf ├── e175s41i.shp ├── e175s41i.shx ├── e175s42i.dbf ├── e175s42i.shp ├── e175s42i.shx ├── e176s37i.dbf ├── e176s37i.shp ├── e176s37i.shx ├── e176s38i.dbf ├── e176s38i.shp ├── e176s38i.shx ├── e176s39i.dbf ├── e176s39i.shp ├── e176s39i.shx ├── e176s40i.dbf ├── e176s40i.shp ├── e176s40i.shx ├── e176s41i.dbf ├── e176s41i.shp ├── e176s41i.shx ├── e176s42i.dbf ├── e176s42i.shp ├── e176s42i.shx ├── e177s38i.dbf ├── e177s38i.shp ├── e177s38i.shx ├── e177s39i.dbf ├── e177s39i.shp ├── e177s39i.shx ├── e177s40i.dbf ├── e177s40i.shp ├── e177s40i.shx ├── e178s38i.dbf ├── e178s38i.shp ├── e178s38i.shx ├── e178s39i.dbf ├── e178s39i.shp ├── e178s39i.shx ├── e178s40i.dbf ├── e178s40i.shp ├── e178s40i.shx ├── ocean_holes.cpg ├── ocean_holes.dbf ├── ocean_holes.prj ├── ocean_holes.shp ├── ocean_holes.shx └── water_mask.tif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.gitignore -------------------------------------------------------------------------------- /.ipynb_checkpoints/README-checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.ipynb_checkpoints/README-checkpoint.md -------------------------------------------------------------------------------- /.ipynb_checkpoints/docker_cmds-checkpoint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.ipynb_checkpoints/docker_cmds-checkpoint.txt -------------------------------------------------------------------------------- /.ipynb_checkpoints/download_hyp3_insar_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.ipynb_checkpoints/download_hyp3_insar_data-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/get_mintpy_window-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.ipynb_checkpoints/get_mintpy_window-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/hyp3-checkpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.ipynb_checkpoints/hyp3-checkpoint.cfg -------------------------------------------------------------------------------- /.ipynb_checkpoints/hyp3_mintpy-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/.ipynb_checkpoints/hyp3_mintpy-checkpoint.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/README.md -------------------------------------------------------------------------------- /asf_files/asc-lower-2021-11-05.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/asf_files/asc-lower-2021-11-05.geojson -------------------------------------------------------------------------------- /asf_files/asc-upper-2021-11-05.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/asf_files/asc-upper-2021-11-05.geojson -------------------------------------------------------------------------------- /asf_files/desc-lower-2021-11-05.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/asf_files/desc-lower-2021-11-05.geojson -------------------------------------------------------------------------------- /asf_files/desc-upper-2021-11-05.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/asf_files/desc-upper-2021-11-05.geojson -------------------------------------------------------------------------------- /configs/.ipynb_checkpoints/asc_lower-checkpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/.ipynb_checkpoints/asc_lower-checkpoint.cfg -------------------------------------------------------------------------------- /configs/.ipynb_checkpoints/asc_upper-checkpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/.ipynb_checkpoints/asc_upper-checkpoint.cfg -------------------------------------------------------------------------------- /configs/.ipynb_checkpoints/desc_lower-checkpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/.ipynb_checkpoints/desc_lower-checkpoint.cfg -------------------------------------------------------------------------------- /configs/.ipynb_checkpoints/desc_upper-checkpoint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/.ipynb_checkpoints/desc_upper-checkpoint.cfg -------------------------------------------------------------------------------- /configs/asc_lower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/asc_lower.cfg -------------------------------------------------------------------------------- /configs/asc_upper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/asc_upper.cfg -------------------------------------------------------------------------------- /configs/desc_lower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/desc_lower.cfg -------------------------------------------------------------------------------- /configs/desc_upper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/configs/desc_upper.cfg -------------------------------------------------------------------------------- /docker_cmds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/docker_cmds.txt -------------------------------------------------------------------------------- /download_hyp3_insar_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/download_hyp3_insar_data.ipynb -------------------------------------------------------------------------------- /get_mintpy_window.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/get_mintpy_window.ipynb -------------------------------------------------------------------------------- /hyp3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/hyp3.cfg -------------------------------------------------------------------------------- /hyp3_mintpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/hyp3_mintpy.ipynb -------------------------------------------------------------------------------- /identify_activity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/identify_activity.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/check_hyp3_scene_bounds-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/check_hyp3_scene_bounds-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/create_water_mask-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/create_water_mask-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/determine_bounding-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/determine_bounding-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/download_hyp3_insar_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/download_hyp3_insar_data-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/hyp3_mintpy-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/hyp3_mintpy-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/hyp3_mintpy_network-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/hyp3_mintpy_network-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/hyp3_to_same_window-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/hyp3_to_same_window-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/.ipynb_checkpoints/merge_rasters-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/.ipynb_checkpoints/merge_rasters-checkpoint.ipynb -------------------------------------------------------------------------------- /legacy/check_hyp3_scene_bounds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/check_hyp3_scene_bounds.ipynb -------------------------------------------------------------------------------- /legacy/create_water_mask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/create_water_mask.ipynb -------------------------------------------------------------------------------- /legacy/determine_bounding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/determine_bounding.ipynb -------------------------------------------------------------------------------- /legacy/download_hyp3_insar_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/download_hyp3_insar_data.ipynb -------------------------------------------------------------------------------- /legacy/hyp3_mintpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/hyp3_mintpy.ipynb -------------------------------------------------------------------------------- /legacy/hyp3_mintpy_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/hyp3_mintpy_network.ipynb -------------------------------------------------------------------------------- /legacy/hyp3_old.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/hyp3_old.cfg -------------------------------------------------------------------------------- /legacy/hyp3_to_same_window.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/hyp3_to_same_window.ipynb -------------------------------------------------------------------------------- /legacy/identify_activity_v1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/identify_activity_v1.ipynb -------------------------------------------------------------------------------- /legacy/mask_and_combine_v1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/mask_and_combine_v1.ipynb -------------------------------------------------------------------------------- /legacy/merge_rasters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/merge_rasters.ipynb -------------------------------------------------------------------------------- /legacy/network_selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/network_selection.ipynb -------------------------------------------------------------------------------- /legacy/regression_check.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/legacy/regression_check.ipynb -------------------------------------------------------------------------------- /mask_and_combine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/mask_and_combine.ipynb -------------------------------------------------------------------------------- /waterbodies/Documents/Readme File SRTM Water Body Data.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/Documents/Readme File SRTM Water Body Data.doc -------------------------------------------------------------------------------- /waterbodies/Documents/SRTM Edit Rules v2.0 12 Mar 03.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/Documents/SRTM Edit Rules v2.0 12 Mar 03.doc -------------------------------------------------------------------------------- /waterbodies/Documents/SWBD Product Specific Guidance v2.0 12 Mar 03jas.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/Documents/SWBD Product Specific Guidance v2.0 12 Mar 03jas.doc -------------------------------------------------------------------------------- /waterbodies/e171s42i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e171s42i.dbf -------------------------------------------------------------------------------- /waterbodies/e171s42i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e171s42i.shp -------------------------------------------------------------------------------- /waterbodies/e171s42i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e171s42i.shx -------------------------------------------------------------------------------- /waterbodies/e172s41i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e172s41i.dbf -------------------------------------------------------------------------------- /waterbodies/e172s41i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e172s41i.shp -------------------------------------------------------------------------------- /waterbodies/e172s41i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e172s41i.shx -------------------------------------------------------------------------------- /waterbodies/e172s42i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e172s42i.dbf -------------------------------------------------------------------------------- /waterbodies/e172s42i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e172s42i.shp -------------------------------------------------------------------------------- /waterbodies/e172s42i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e172s42i.shx -------------------------------------------------------------------------------- /waterbodies/e173s36i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s36i.dbf -------------------------------------------------------------------------------- /waterbodies/e173s36i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s36i.shp -------------------------------------------------------------------------------- /waterbodies/e173s36i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s36i.shx -------------------------------------------------------------------------------- /waterbodies/e173s37i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s37i.dbf -------------------------------------------------------------------------------- /waterbodies/e173s37i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s37i.shp -------------------------------------------------------------------------------- /waterbodies/e173s37i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s37i.shx -------------------------------------------------------------------------------- /waterbodies/e173s40i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s40i.dbf -------------------------------------------------------------------------------- /waterbodies/e173s40i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s40i.shp -------------------------------------------------------------------------------- /waterbodies/e173s40i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s40i.shx -------------------------------------------------------------------------------- /waterbodies/e173s41i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s41i.dbf -------------------------------------------------------------------------------- /waterbodies/e173s41i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s41i.shp -------------------------------------------------------------------------------- /waterbodies/e173s41i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s41i.shx -------------------------------------------------------------------------------- /waterbodies/e173s42i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s42i.dbf -------------------------------------------------------------------------------- /waterbodies/e173s42i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s42i.shp -------------------------------------------------------------------------------- /waterbodies/e173s42i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e173s42i.shx -------------------------------------------------------------------------------- /waterbodies/e174s36i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s36i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s36i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s36i.shp -------------------------------------------------------------------------------- /waterbodies/e174s36i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s36i.shx -------------------------------------------------------------------------------- /waterbodies/e174s37i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s37i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s37i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s37i.shp -------------------------------------------------------------------------------- /waterbodies/e174s37i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s37i.shx -------------------------------------------------------------------------------- /waterbodies/e174s38i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s38i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s38i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s38i.shp -------------------------------------------------------------------------------- /waterbodies/e174s38i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s38i.shx -------------------------------------------------------------------------------- /waterbodies/e174s39i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s39i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s39i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s39i.shp -------------------------------------------------------------------------------- /waterbodies/e174s39i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s39i.shx -------------------------------------------------------------------------------- /waterbodies/e174s40i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s40i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s40i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s40i.shp -------------------------------------------------------------------------------- /waterbodies/e174s40i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s40i.shx -------------------------------------------------------------------------------- /waterbodies/e174s41i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s41i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s41i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s41i.shp -------------------------------------------------------------------------------- /waterbodies/e174s41i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s41i.shx -------------------------------------------------------------------------------- /waterbodies/e174s42i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s42i.dbf -------------------------------------------------------------------------------- /waterbodies/e174s42i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s42i.shp -------------------------------------------------------------------------------- /waterbodies/e174s42i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e174s42i.shx -------------------------------------------------------------------------------- /waterbodies/e175s36i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s36i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s36i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s36i.shp -------------------------------------------------------------------------------- /waterbodies/e175s36i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s36i.shx -------------------------------------------------------------------------------- /waterbodies/e175s37i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s37i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s37i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s37i.shp -------------------------------------------------------------------------------- /waterbodies/e175s37i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s37i.shx -------------------------------------------------------------------------------- /waterbodies/e175s38i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s38i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s38i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s38i.shp -------------------------------------------------------------------------------- /waterbodies/e175s38i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s38i.shx -------------------------------------------------------------------------------- /waterbodies/e175s39i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s39i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s39i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s39i.shp -------------------------------------------------------------------------------- /waterbodies/e175s39i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s39i.shx -------------------------------------------------------------------------------- /waterbodies/e175s40i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s40i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s40i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s40i.shp -------------------------------------------------------------------------------- /waterbodies/e175s40i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s40i.shx -------------------------------------------------------------------------------- /waterbodies/e175s41i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s41i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s41i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s41i.shp -------------------------------------------------------------------------------- /waterbodies/e175s41i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s41i.shx -------------------------------------------------------------------------------- /waterbodies/e175s42i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s42i.dbf -------------------------------------------------------------------------------- /waterbodies/e175s42i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s42i.shp -------------------------------------------------------------------------------- /waterbodies/e175s42i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e175s42i.shx -------------------------------------------------------------------------------- /waterbodies/e176s37i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s37i.dbf -------------------------------------------------------------------------------- /waterbodies/e176s37i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s37i.shp -------------------------------------------------------------------------------- /waterbodies/e176s37i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s37i.shx -------------------------------------------------------------------------------- /waterbodies/e176s38i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s38i.dbf -------------------------------------------------------------------------------- /waterbodies/e176s38i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s38i.shp -------------------------------------------------------------------------------- /waterbodies/e176s38i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s38i.shx -------------------------------------------------------------------------------- /waterbodies/e176s39i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s39i.dbf -------------------------------------------------------------------------------- /waterbodies/e176s39i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s39i.shp -------------------------------------------------------------------------------- /waterbodies/e176s39i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s39i.shx -------------------------------------------------------------------------------- /waterbodies/e176s40i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s40i.dbf -------------------------------------------------------------------------------- /waterbodies/e176s40i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s40i.shp -------------------------------------------------------------------------------- /waterbodies/e176s40i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s40i.shx -------------------------------------------------------------------------------- /waterbodies/e176s41i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s41i.dbf -------------------------------------------------------------------------------- /waterbodies/e176s41i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s41i.shp -------------------------------------------------------------------------------- /waterbodies/e176s41i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s41i.shx -------------------------------------------------------------------------------- /waterbodies/e176s42i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s42i.dbf -------------------------------------------------------------------------------- /waterbodies/e176s42i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s42i.shp -------------------------------------------------------------------------------- /waterbodies/e176s42i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e176s42i.shx -------------------------------------------------------------------------------- /waterbodies/e177s38i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s38i.dbf -------------------------------------------------------------------------------- /waterbodies/e177s38i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s38i.shp -------------------------------------------------------------------------------- /waterbodies/e177s38i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s38i.shx -------------------------------------------------------------------------------- /waterbodies/e177s39i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s39i.dbf -------------------------------------------------------------------------------- /waterbodies/e177s39i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s39i.shp -------------------------------------------------------------------------------- /waterbodies/e177s39i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s39i.shx -------------------------------------------------------------------------------- /waterbodies/e177s40i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s40i.dbf -------------------------------------------------------------------------------- /waterbodies/e177s40i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s40i.shp -------------------------------------------------------------------------------- /waterbodies/e177s40i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e177s40i.shx -------------------------------------------------------------------------------- /waterbodies/e178s38i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s38i.dbf -------------------------------------------------------------------------------- /waterbodies/e178s38i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s38i.shp -------------------------------------------------------------------------------- /waterbodies/e178s38i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s38i.shx -------------------------------------------------------------------------------- /waterbodies/e178s39i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s39i.dbf -------------------------------------------------------------------------------- /waterbodies/e178s39i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s39i.shp -------------------------------------------------------------------------------- /waterbodies/e178s39i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s39i.shx -------------------------------------------------------------------------------- /waterbodies/e178s40i.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s40i.dbf -------------------------------------------------------------------------------- /waterbodies/e178s40i.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s40i.shp -------------------------------------------------------------------------------- /waterbodies/e178s40i.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/e178s40i.shx -------------------------------------------------------------------------------- /waterbodies/ocean_holes.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /waterbodies/ocean_holes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/ocean_holes.dbf -------------------------------------------------------------------------------- /waterbodies/ocean_holes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/ocean_holes.prj -------------------------------------------------------------------------------- /waterbodies/ocean_holes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/ocean_holes.shp -------------------------------------------------------------------------------- /waterbodies/ocean_holes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/ocean_holes.shx -------------------------------------------------------------------------------- /waterbodies/water_mask.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forrestfwilliams/hyp3_insar/HEAD/waterbodies/water_mask.tif --------------------------------------------------------------------------------