├── .gitignore ├── .python-version ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets ├── Make README graphic.ipynb └── land_use_before_after.png ├── main.py ├── multiclean ├── __init__.py ├── __version__.py ├── multiclean.py └── utils.py ├── notebooks ├── Cloud example.ipynb ├── Land use example (Colab).ipynb ├── Land use example.ipynb └── data │ ├── Landsat cloud and cloud shadow.tif │ ├── land use a.tif │ └── land use b.tif ├── pyproject.toml ├── tests └── test_multiclean.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/README.md -------------------------------------------------------------------------------- /assets/Make README graphic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/assets/Make README graphic.ipynb -------------------------------------------------------------------------------- /assets/land_use_before_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/assets/land_use_before_after.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/main.py -------------------------------------------------------------------------------- /multiclean/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/multiclean/__init__.py -------------------------------------------------------------------------------- /multiclean/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.0" 2 | -------------------------------------------------------------------------------- /multiclean/multiclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/multiclean/multiclean.py -------------------------------------------------------------------------------- /multiclean/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/multiclean/utils.py -------------------------------------------------------------------------------- /notebooks/Cloud example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/notebooks/Cloud example.ipynb -------------------------------------------------------------------------------- /notebooks/Land use example (Colab).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/notebooks/Land use example (Colab).ipynb -------------------------------------------------------------------------------- /notebooks/Land use example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/notebooks/Land use example.ipynb -------------------------------------------------------------------------------- /notebooks/data/Landsat cloud and cloud shadow.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/notebooks/data/Landsat cloud and cloud shadow.tif -------------------------------------------------------------------------------- /notebooks/data/land use a.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/notebooks/data/land use a.tif -------------------------------------------------------------------------------- /notebooks/data/land use b.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/notebooks/data/land use b.tif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_multiclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/tests/test_multiclean.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPIRD-DMA/MultiClean/HEAD/uv.lock --------------------------------------------------------------------------------