├── .codespellignore ├── .flake8 ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── continuous-integration.yml │ └── release.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CHANGELOG.MD ├── CODE_OF_CONDUCT.MD ├── CONTRIBUTING.MD ├── LICENSE ├── README.md ├── docker ├── Dockerfile ├── Dockerfile-dev ├── build ├── cibuild ├── console ├── docs-server ├── format ├── notebook ├── stac └── test ├── environment.yml ├── examples ├── catalog.json ├── sentinel2-l1c-example │ ├── S2A_T01LAC_20200717T221944_L1C │ │ └── S2A_T01LAC_20200717T221944_L1C.json │ └── collection.json └── sentinel2-l2a-example │ ├── S2A_T07HFE_20190212T192646_L2A │ └── S2A_T07HFE_20190212T192646_L2A.json │ └── collection.json ├── pyproject.toml ├── requirements-dev.txt ├── scripts ├── cibuild ├── create_examples.py ├── create_expected.py ├── format ├── lint ├── publish ├── stac ├── test └── update ├── src └── stactools │ └── sentinel2 │ ├── __init__.py │ ├── cog.py │ ├── commands.py │ ├── constants.py │ ├── granule_metadata.py │ ├── mgrs.py │ ├── product_metadata.py │ ├── safe_manifest.py │ ├── stac.py │ ├── tileinfo_metadata.py │ └── utils.py └── tests ├── __init__.py ├── conftest.py ├── data-files ├── S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE │ ├── DATASTRIP │ │ └── DS_SGS__20200717T234135_S20200717T221944 │ │ │ ├── MTD_DS.xml │ │ │ └── QI_DATA │ │ │ ├── FORMAT_CORRECTNESS.xml │ │ │ ├── GENERAL_QUALITY.xml │ │ │ ├── GEOMETRIC_QUALITY.xml │ │ │ ├── RADIOMETRIC_QUALITY.xml │ │ │ └── SENSOR_QUALITY.xml │ ├── GRANULE │ │ └── L1C_T01LAC_A026481_20200717T221944 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL1C.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE │ ├── DATASTRIP │ │ └── DS_VGS4_20210908T070248_S20210908T043714 │ │ │ └── MTD_DS.xml │ ├── GRANULE │ │ └── L1C_T46RER_A032448_20210908T043714 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL1C.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_MSIL2A_20150826T185436_N0212_R070_T11SLT_20210412T023147 │ ├── MTD_MSIL2A.xml │ └── MTD_TL.xml ├── S2A_MSIL2A_20180721T053721_N0212_R062_T43MDV_20201011T181419.SAFE │ └── MTD_MSIL2a.xml ├── S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE │ ├── GRANULE │ │ └── L2A_T07HFE_A019029_20190212T192646 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE │ ├── GRANULE │ │ └── L2A_T01WCP_A041826_20230625T234624 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE │ ├── GRANULE │ │ └── L2A_T01WCP_A041826_20230625T234624 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE │ ├── GRANULE │ │ └── L2A_T01WCS_A041826_20230625T234624 │ │ │ └── MTD_TL.xml │ ├── L2A_T01WCS_A041826_20230625T234624 │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── MTD_TL.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE │ ├── GRANULE │ │ └── L2A_T01KAB_A042640_20230821T221944 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG │ ├── expected_output.json │ ├── metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_DS_2APS_20230105T201055_S20230105T163809 │ ├── metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL │ ├── expected_output.json │ ├── metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG │ ├── expected_output.json │ ├── metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP │ ├── expected_output.json │ ├── metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry-no-product-metadata │ ├── metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry │ ├── metadata.xml │ ├── product_metadata.xml │ └── tileInfo.json ├── S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ │ ├── expected_output.json │ ├── metadata.xml │ ├── product_metadata.xml │ └── tileInfo.json ├── S2A_T60CWS_20240109T203651_L2A │ ├── expected_output.json │ ├── metadata.xml │ └── tileInfo.json ├── S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE │ ├── GRANULE │ │ └── L2A_T01CCV_A014683_20191228T210521 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658 │ ├── expected_output.json │ ├── metadata.xml │ └── tileInfo.json ├── S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE │ ├── GRANULE │ │ └── L2A_T33XWJ_A026649_20220413T150756 │ │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── S2B_OPER_MSI_L2A_DS_VGS1_20201101T095401_S20201101T074429-no-data │ ├── metadata.xml │ └── tileInfo.json └── esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE │ ├── GRANULE │ └── L2A_T22HBD_A020270_20210122T133224 │ │ └── MTD_TL.xml │ ├── MTD_MSIL2A.xml │ ├── expected_output.json │ └── manifest.safe ├── test_commands.py ├── test_metadata.py └── test_stac.py /.codespellignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile = black 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/CODE_OF_CONDUCT.MD -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/Dockerfile-dev -------------------------------------------------------------------------------- /docker/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/build -------------------------------------------------------------------------------- /docker/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/cibuild -------------------------------------------------------------------------------- /docker/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/console -------------------------------------------------------------------------------- /docker/docs-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/docs-server -------------------------------------------------------------------------------- /docker/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/format -------------------------------------------------------------------------------- /docker/notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/notebook -------------------------------------------------------------------------------- /docker/stac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/stac -------------------------------------------------------------------------------- /docker/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/docker/test -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/examples/catalog.json -------------------------------------------------------------------------------- /examples/sentinel2-l1c-example/S2A_T01LAC_20200717T221944_L1C/S2A_T01LAC_20200717T221944_L1C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/examples/sentinel2-l1c-example/S2A_T01LAC_20200717T221944_L1C/S2A_T01LAC_20200717T221944_L1C.json -------------------------------------------------------------------------------- /examples/sentinel2-l1c-example/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/examples/sentinel2-l1c-example/collection.json -------------------------------------------------------------------------------- /examples/sentinel2-l2a-example/S2A_T07HFE_20190212T192646_L2A/S2A_T07HFE_20190212T192646_L2A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/examples/sentinel2-l2a-example/S2A_T07HFE_20190212T192646_L2A/S2A_T07HFE_20190212T192646_L2A.json -------------------------------------------------------------------------------- /examples/sentinel2-l2a-example/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/examples/sentinel2-l2a-example/collection.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /scripts/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/cibuild -------------------------------------------------------------------------------- /scripts/create_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/create_examples.py -------------------------------------------------------------------------------- /scripts/create_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/create_expected.py -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/publish -------------------------------------------------------------------------------- /scripts/stac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/stac -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/scripts/update -------------------------------------------------------------------------------- /src/stactools/sentinel2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/__init__.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/cog.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/commands.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/constants.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/granule_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/granule_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/mgrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/mgrs.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/product_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/product_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/safe_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/safe_manifest.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/stac.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/tileinfo_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/tileinfo_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/src/stactools/sentinel2/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/MTD_DS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/MTD_DS.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/FORMAT_CORRECTNESS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/FORMAT_CORRECTNESS.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/GENERAL_QUALITY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/GENERAL_QUALITY.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/GEOMETRIC_QUALITY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/GEOMETRIC_QUALITY.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/RADIOMETRIC_QUALITY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/RADIOMETRIC_QUALITY.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/SENSOR_QUALITY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/DATASTRIP/DS_SGS__20200717T234135_S20200717T221944/QI_DATA/SENSOR_QUALITY.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/GRANULE/L1C_T01LAC_A026481_20200717T221944/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/GRANULE/L1C_T01LAC_A026481_20200717T221944/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/MTD_MSIL1C.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/MTD_MSIL1C.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20200717T221941_R029_T01LAC_20200717T234135.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/DATASTRIP/DS_VGS4_20210908T070248_S20210908T043714/MTD_DS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/DATASTRIP/DS_VGS4_20210908T070248_S20210908T043714/MTD_DS.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/GRANULE/L1C_T46RER_A032448_20210908T043714/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/GRANULE/L1C_T46RER_A032448_20210908T043714/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/MTD_MSIL1C.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/MTD_MSIL1C.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL1C_20210908T042701_N0301_R133_T46RER_20210908T070248.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20150826T185436_N0212_R070_T11SLT_20210412T023147/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20150826T185436_N0212_R070_T11SLT_20210412T023147/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20150826T185436_N0212_R070_T11SLT_20210412T023147/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20150826T185436_N0212_R070_T11SLT_20210412T023147/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20180721T053721_N0212_R062_T43MDV_20201011T181419.SAFE/MTD_MSIL2a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20180721T053721_N0212_R062_T43MDV_20201011T181419.SAFE/MTD_MSIL2a.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/GRANULE/L2A_T07HFE_A019029_20190212T192646/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/GRANULE/L2A_T07HFE_A019029_20190212T192646/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20190212T192651_N0212_R013_T07HFE_20201007T160857.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/GRANULE/L2A_T01WCP_A041826_20230625T234624/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/GRANULE/L2A_T01WCP_A041826_20230625T234624/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022157.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/GRANULE/L2A_T01WCP_A041826_20230625T234624/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/GRANULE/L2A_T01WCP_A041826_20230625T234624/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCP_20230626T022158.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/GRANULE/L2A_T01WCS_A041826_20230625T234624/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/GRANULE/L2A_T01WCS_A041826_20230625T234624/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/L2A_T01WCS_A041826_20230625T234624/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/L2A_T01WCS_A041826_20230625T234624/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230625T234621_N0509_R073_T01WCS_20230626T022157.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/GRANULE/L2A_T01KAB_A042640_20230821T221944/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/GRANULE/L2A_T01KAB_A042640_20230821T221944/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_MSIL2A_20230821T221941_N0509_R029_T01KAB_20230822T021825.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L1C_TL_SGS__20181231T203637_A018414_T10SDG/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_DS_2APS_20230105T201055_S20230105T163809/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_DS_2APS_20230105T201055_S20230105T163809/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_DS_2APS_20230105T201055_S20230105T163809/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_DS_2APS_20230105T201055_S20230105T163809/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_2APS_20240108T121951_A044635_T34VEL/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_SGS__20181231T210250_A018414_T10SDG/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBP/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry-no-product-metadata/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry-no-product-metadata/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry-no-product-metadata/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry-no-product-metadata/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry/product_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry/product_metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ-no-tileDataGeometry/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/product_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/product_metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_OPER_MSI_L2A_TL_VGS1_20220401T110010_A035382_T34LBQ/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2A_T60CWS_20240109T203651_L2A/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_T60CWS_20240109T203651_L2A/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2A_T60CWS_20240109T203651_L2A/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_T60CWS_20240109T203651_L2A/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2A_T60CWS_20240109T203651_L2A/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2A_T60CWS_20240109T203651_L2A/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/GRANULE/L2A_T01CCV_A014683_20191228T210521/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/GRANULE/L2A_T01CCV_A014683_20191228T210521/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20191228T210519_N0212_R071_T01CCV_20201003T104658.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20200914T231559_N0500_R087_T01VCG_20230315T224658/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/GRANULE/L2A_T33XWJ_A026649_20220413T150756/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/GRANULE/L2A_T33XWJ_A026649_20220413T150756/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_MSIL2A_20220413T150759_N0400_R025_T33XWJ_20220414T082126.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/S2B_OPER_MSI_L2A_DS_VGS1_20201101T095401_S20201101T074429-no-data/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_OPER_MSI_L2A_DS_VGS1_20201101T095401_S20201101T074429-no-data/metadata.xml -------------------------------------------------------------------------------- /tests/data-files/S2B_OPER_MSI_L2A_DS_VGS1_20201101T095401_S20201101T074429-no-data/tileInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/S2B_OPER_MSI_L2A_DS_VGS1_20201101T095401_S20201101T074429-no-data/tileInfo.json -------------------------------------------------------------------------------- /tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/GRANULE/L2A_T22HBD_A020270_20210122T133224/MTD_TL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/GRANULE/L2A_T22HBD_A020270_20210122T133224/MTD_TL.xml -------------------------------------------------------------------------------- /tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/MTD_MSIL2A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/MTD_MSIL2A.xml -------------------------------------------------------------------------------- /tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/expected_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/expected_output.json -------------------------------------------------------------------------------- /tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/data-files/esa_S2B_MSIL2A_20210122T133229_N0214_R081_T22HBD_20210122T155500.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel2/HEAD/tests/test_stac.py --------------------------------------------------------------------------------