├── .gitignore ├── README.md ├── data └── catalog.json ├── environment.yaml ├── explore_dataset.ipynb ├── prepare ├── __init__.py ├── preproc_s1_snap.xml ├── split.py └── utils.py ├── s1s2_water.py └── settings.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/README.md -------------------------------------------------------------------------------- /data/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/data/catalog.json -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/environment.yaml -------------------------------------------------------------------------------- /explore_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/explore_dataset.ipynb -------------------------------------------------------------------------------- /prepare/__init__.py: -------------------------------------------------------------------------------- 1 | version = "1.0.1" 2 | -------------------------------------------------------------------------------- /prepare/preproc_s1_snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/prepare/preproc_s1_snap.xml -------------------------------------------------------------------------------- /prepare/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/prepare/split.py -------------------------------------------------------------------------------- /prepare/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/prepare/utils.py -------------------------------------------------------------------------------- /s1s2_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/s1s2_water.py -------------------------------------------------------------------------------- /settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MWieland/s1s2_water/HEAD/settings.toml --------------------------------------------------------------------------------