├── .gitignore ├── DATA_HOWTO.md ├── EBD_Logo_with_Text.png ├── INSTALLATION.md ├── LICENSE ├── README.md ├── Resources.md ├── TRAINING_MATERIAL.md ├── code ├── Jupyter │ ├── seppo_jupyter_clear_notebook.py │ └── seppo_jupyter_notebookdir_sync.py ├── QGIS │ ├── README.md │ ├── v2 │ │ └── plugins │ │ │ └── Timeseries_SAR_v2.zip │ └── v3 │ │ └── plugins │ │ ├── Timeseries_SAR_v3_Linux_MacOS.zip │ │ └── Timeseries_SAR_v3_Windows.zip ├── README.md ├── asf_search │ └── slc_repeat_search.py ├── global_coherence │ ├── README.md │ ├── check_modules.py │ ├── global_coherence_backscatter_sentinel1_kerchunk.py │ ├── global_coherence_mosaic_tool.py │ ├── step-1-1-slc2bursts.py │ ├── step-1-2-bursts2burstGroups.py │ ├── step-2-1-insar_processor.py │ ├── step-3-1-compositing.py │ ├── step-4.1-mosaics.py │ └── vis │ │ └── global_coherence_backscatter_sentinel1.py ├── lib │ └── ebdpy.py ├── seppo │ ├── seppo_uavsar_download.py │ └── seppo_vis_makeRGBs.py └── terriajs │ └── json │ ├── red_river.json │ └── test.json ├── data └── testdata.zip ├── documentation ├── EBD_DataGuide.md ├── EBD_DataGuide.pdf └── EBD_Logo_with_Text_medium.png ├── notebooks ├── InstallationTest.ipynb ├── NISAR │ └── NISAR_Disturbance_ATBD.ipynb ├── bugs │ └── open_test.ipynb ├── global_coherence │ ├── Coherence_GlobalMosaic_Visualization.ipynb │ ├── Coherence_Regional_Visualization.ipynb │ ├── README.md │ ├── global_coherence_backscatter_sentinel1_kerchunk.ipynb │ └── local_test.ipynb └── notebookviews │ └── html │ └── InstallationTest.html ├── pre_2020_INSTALLATION.md └── yaml ├── deprecated_conda_ebd.yml ├── ebd.yml ├── jhub.yml └── seppoloc.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/.gitignore -------------------------------------------------------------------------------- /DATA_HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/DATA_HOWTO.md -------------------------------------------------------------------------------- /EBD_Logo_with_Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/EBD_Logo_with_Text.png -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/README.md -------------------------------------------------------------------------------- /Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/Resources.md -------------------------------------------------------------------------------- /TRAINING_MATERIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/TRAINING_MATERIAL.md -------------------------------------------------------------------------------- /code/Jupyter/seppo_jupyter_clear_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/Jupyter/seppo_jupyter_clear_notebook.py -------------------------------------------------------------------------------- /code/Jupyter/seppo_jupyter_notebookdir_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/Jupyter/seppo_jupyter_notebookdir_sync.py -------------------------------------------------------------------------------- /code/QGIS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/QGIS/README.md -------------------------------------------------------------------------------- /code/QGIS/v2/plugins/Timeseries_SAR_v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/QGIS/v2/plugins/Timeseries_SAR_v2.zip -------------------------------------------------------------------------------- /code/QGIS/v3/plugins/Timeseries_SAR_v3_Linux_MacOS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/QGIS/v3/plugins/Timeseries_SAR_v3_Linux_MacOS.zip -------------------------------------------------------------------------------- /code/QGIS/v3/plugins/Timeseries_SAR_v3_Windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/QGIS/v3/plugins/Timeseries_SAR_v3_Windows.zip -------------------------------------------------------------------------------- /code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/README.md -------------------------------------------------------------------------------- /code/asf_search/slc_repeat_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/asf_search/slc_repeat_search.py -------------------------------------------------------------------------------- /code/global_coherence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/README.md -------------------------------------------------------------------------------- /code/global_coherence/check_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/check_modules.py -------------------------------------------------------------------------------- /code/global_coherence/global_coherence_backscatter_sentinel1_kerchunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/global_coherence_backscatter_sentinel1_kerchunk.py -------------------------------------------------------------------------------- /code/global_coherence/global_coherence_mosaic_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/global_coherence_mosaic_tool.py -------------------------------------------------------------------------------- /code/global_coherence/step-1-1-slc2bursts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/step-1-1-slc2bursts.py -------------------------------------------------------------------------------- /code/global_coherence/step-1-2-bursts2burstGroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/step-1-2-bursts2burstGroups.py -------------------------------------------------------------------------------- /code/global_coherence/step-2-1-insar_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/step-2-1-insar_processor.py -------------------------------------------------------------------------------- /code/global_coherence/step-3-1-compositing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/step-3-1-compositing.py -------------------------------------------------------------------------------- /code/global_coherence/step-4.1-mosaics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/step-4.1-mosaics.py -------------------------------------------------------------------------------- /code/global_coherence/vis/global_coherence_backscatter_sentinel1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/global_coherence/vis/global_coherence_backscatter_sentinel1.py -------------------------------------------------------------------------------- /code/lib/ebdpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/lib/ebdpy.py -------------------------------------------------------------------------------- /code/seppo/seppo_uavsar_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/seppo/seppo_uavsar_download.py -------------------------------------------------------------------------------- /code/seppo/seppo_vis_makeRGBs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/seppo/seppo_vis_makeRGBs.py -------------------------------------------------------------------------------- /code/terriajs/json/red_river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/terriajs/json/red_river.json -------------------------------------------------------------------------------- /code/terriajs/json/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/code/terriajs/json/test.json -------------------------------------------------------------------------------- /data/testdata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/data/testdata.zip -------------------------------------------------------------------------------- /documentation/EBD_DataGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/documentation/EBD_DataGuide.md -------------------------------------------------------------------------------- /documentation/EBD_DataGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/documentation/EBD_DataGuide.pdf -------------------------------------------------------------------------------- /documentation/EBD_Logo_with_Text_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/documentation/EBD_Logo_with_Text_medium.png -------------------------------------------------------------------------------- /notebooks/InstallationTest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/InstallationTest.ipynb -------------------------------------------------------------------------------- /notebooks/NISAR/NISAR_Disturbance_ATBD.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/NISAR/NISAR_Disturbance_ATBD.ipynb -------------------------------------------------------------------------------- /notebooks/bugs/open_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/bugs/open_test.ipynb -------------------------------------------------------------------------------- /notebooks/global_coherence/Coherence_GlobalMosaic_Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/global_coherence/Coherence_GlobalMosaic_Visualization.ipynb -------------------------------------------------------------------------------- /notebooks/global_coherence/Coherence_Regional_Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/global_coherence/Coherence_Regional_Visualization.ipynb -------------------------------------------------------------------------------- /notebooks/global_coherence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/global_coherence/README.md -------------------------------------------------------------------------------- /notebooks/global_coherence/global_coherence_backscatter_sentinel1_kerchunk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/global_coherence/global_coherence_backscatter_sentinel1_kerchunk.ipynb -------------------------------------------------------------------------------- /notebooks/global_coherence/local_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/global_coherence/local_test.ipynb -------------------------------------------------------------------------------- /notebooks/notebookviews/html/InstallationTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/notebooks/notebookviews/html/InstallationTest.html -------------------------------------------------------------------------------- /pre_2020_INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/pre_2020_INSTALLATION.md -------------------------------------------------------------------------------- /yaml/deprecated_conda_ebd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/yaml/deprecated_conda_ebd.yml -------------------------------------------------------------------------------- /yaml/ebd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/yaml/ebd.yml -------------------------------------------------------------------------------- /yaml/jhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/yaml/jhub.yml -------------------------------------------------------------------------------- /yaml/seppoloc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthBigData/openSAR/HEAD/yaml/seppoloc.yaml --------------------------------------------------------------------------------