├── .github └── workflows │ ├── publish-to-pypi.yml │ └── test-package.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── pylandsat ├── __init__.py ├── bands.json ├── catalog.py ├── cli.py ├── database.py ├── download.py ├── files.json ├── preprocessing.py ├── queries.py ├── scene.py └── utils.py ├── pyproject.toml ├── requirements.txt └── tests ├── data ├── LT05_01_030_025_LT05_L1GS_030025_19860927_20161003_01_T2 │ └── LT05_L1GS_030025_19860927_20161003_01_T2_MTL.txt ├── sample.txt └── sample.txt.gz ├── test_database.py ├── test_download.py ├── test_scene.py └── test_utils.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/README.md -------------------------------------------------------------------------------- /pylandsat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/__init__.py -------------------------------------------------------------------------------- /pylandsat/bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/bands.json -------------------------------------------------------------------------------- /pylandsat/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/catalog.py -------------------------------------------------------------------------------- /pylandsat/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/cli.py -------------------------------------------------------------------------------- /pylandsat/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/database.py -------------------------------------------------------------------------------- /pylandsat/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/download.py -------------------------------------------------------------------------------- /pylandsat/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/files.json -------------------------------------------------------------------------------- /pylandsat/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/preprocessing.py -------------------------------------------------------------------------------- /pylandsat/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/queries.py -------------------------------------------------------------------------------- /pylandsat/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/scene.py -------------------------------------------------------------------------------- /pylandsat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pylandsat/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/data/LT05_01_030_025_LT05_L1GS_030025_19860927_20161003_01_T2/LT05_L1GS_030025_19860927_20161003_01_T2_MTL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/tests/data/LT05_01_030_025_LT05_L1GS_030025_19860927_20161003_01_T2/LT05_L1GS_030025_19860927_20161003_01_T2_MTL.txt -------------------------------------------------------------------------------- /tests/data/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/tests/data/sample.txt -------------------------------------------------------------------------------- /tests/data/sample.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/tests/data/sample.txt.gz -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/tests/test_download.py -------------------------------------------------------------------------------- /tests/test_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/tests/test_scene.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yannforget/pylandsat/HEAD/tests/test_utils.py --------------------------------------------------------------------------------