├── .github └── workflows │ ├── pythonpublish.yml │ └── tests.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── fels ├── __init__.py ├── __main__.py ├── data │ ├── WRS2_descending.cpg │ ├── WRS2_descending.dbf │ ├── WRS2_descending.prj │ ├── WRS2_descending.sbn │ ├── WRS2_descending.sbx │ ├── WRS2_descending.shp │ ├── WRS2_descending.shx │ ├── WRS2_descending.xml │ ├── sentinel_2_index_shapefile.cpg │ ├── sentinel_2_index_shapefile.dbf │ ├── sentinel_2_index_shapefile.prj │ ├── sentinel_2_index_shapefile.sbn │ ├── sentinel_2_index_shapefile.sbx │ ├── sentinel_2_index_shapefile.shp │ ├── sentinel_2_index_shapefile.shx │ └── source_metadata.txt ├── fels.py ├── landsat.py ├── sentinel2.py └── utils.py ├── package.json ├── pytest.ini ├── requirements.txt ├── requirements ├── build.txt ├── optional.txt ├── runtime.txt └── tests.txt ├── setup.py └── tests └── test_query_consistency.py /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/_config.yml -------------------------------------------------------------------------------- /fels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/__init__.py -------------------------------------------------------------------------------- /fels/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/__main__.py -------------------------------------------------------------------------------- /fels/data/WRS2_descending.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /fels/data/WRS2_descending.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.dbf -------------------------------------------------------------------------------- /fels/data/WRS2_descending.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.prj -------------------------------------------------------------------------------- /fels/data/WRS2_descending.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.sbn -------------------------------------------------------------------------------- /fels/data/WRS2_descending.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.sbx -------------------------------------------------------------------------------- /fels/data/WRS2_descending.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.shp -------------------------------------------------------------------------------- /fels/data/WRS2_descending.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.shx -------------------------------------------------------------------------------- /fels/data/WRS2_descending.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/WRS2_descending.xml -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/sentinel_2_index_shapefile.dbf -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/sentinel_2_index_shapefile.prj -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/sentinel_2_index_shapefile.sbn -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/sentinel_2_index_shapefile.sbx -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/sentinel_2_index_shapefile.shp -------------------------------------------------------------------------------- /fels/data/sentinel_2_index_shapefile.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/sentinel_2_index_shapefile.shx -------------------------------------------------------------------------------- /fels/data/source_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/data/source_metadata.txt -------------------------------------------------------------------------------- /fels/fels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/fels.py -------------------------------------------------------------------------------- /fels/landsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/landsat.py -------------------------------------------------------------------------------- /fels/sentinel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/sentinel2.py -------------------------------------------------------------------------------- /fels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/fels/utils.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/package.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- 1 | gdal 2 | -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_query_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vascobnunes/fetchLandsatSentinelFromGoogleCloud/HEAD/tests/test_query_consistency.py --------------------------------------------------------------------------------