├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── example1.jpg ├── example2.jpg ├── img1.jpg └── img2.jpg ├── src └── get_image.py └── tests ├── images_test └── testimage1.png └── test_get_image.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | venv/ 3 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/README.md -------------------------------------------------------------------------------- /examples/example1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/examples/example1.jpg -------------------------------------------------------------------------------- /examples/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/examples/example2.jpg -------------------------------------------------------------------------------- /examples/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/examples/img1.jpg -------------------------------------------------------------------------------- /examples/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/examples/img2.jpg -------------------------------------------------------------------------------- /src/get_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/src/get_image.py -------------------------------------------------------------------------------- /tests/images_test/testimage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/tests/images_test/testimage1.png -------------------------------------------------------------------------------- /tests/test_get_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v0di/landsat8image/HEAD/tests/test_get_image.py --------------------------------------------------------------------------------