├── .codespellignore ├── .dockerignore ├── .editorconfig ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.MD └── workflows │ ├── continuous-integration.yml │ ├── release.yml │ └── sync-template.yml ├── .gitignore ├── .markdownlintignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker ├── Dockerfile ├── Dockerfile-dev ├── Dockerfile-script-runner ├── build ├── cibuild ├── console ├── docs-server ├── env ├── format ├── notebook ├── pull ├── run-script ├── stac └── test ├── docker_env ├── docs └── installation_and_basic_usage.ipynb ├── environment.yml ├── examples ├── grd │ ├── S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549 │ │ └── S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549.json │ ├── S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13 │ │ └── S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13.json │ └── collection.json ├── rtc │ ├── catalog.json │ └── sentinel1-rtc-aws │ │ ├── 2016 │ │ ├── S1B_20161121_12SYJ_ASC │ │ │ └── S1B_20161121_12SYJ_ASC.json │ │ └── catalog.json │ │ ├── 2020 │ │ ├── S1A_20200103_17RMJ_ASC │ │ │ └── S1A_20200103_17RMJ_ASC.json │ │ └── catalog.json │ │ └── collection.json └── slc │ ├── S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842 │ └── S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842.json │ └── collection.json ├── mypy.ini ├── pyproject.toml ├── requirements-dev.txt ├── scripts ├── cibuild ├── create_examples.py ├── format ├── lint ├── notebook ├── publish ├── rename ├── stac ├── stactools-version.py ├── test └── update ├── src └── stactools │ └── sentinel1 │ ├── __init__.py │ ├── bands.py │ ├── commands.py │ ├── constants.py │ ├── formats.py │ ├── grd │ ├── __init__.py │ ├── commands.py │ ├── constants.py │ ├── product_metadata.py │ ├── properties.py │ └── stac.py │ ├── metadata_links.py │ ├── product_metadata.py │ ├── rtc │ ├── __init__.py │ ├── commands.py │ ├── constants.py │ ├── rtc_metadata.py │ └── stac.py │ └── slc │ ├── __init__.py │ ├── commands.py │ ├── constants.py │ ├── metadata_links.py │ ├── product_metadata.py │ ├── properties.py │ └── stac.py └── tests ├── __init__.py ├── data-files ├── grd │ ├── S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15 │ │ ├── annotation │ │ │ ├── calibration │ │ │ │ ├── calibration-ew-hh.xml │ │ │ │ ├── calibration-ew-hv.xml │ │ │ │ ├── noise-ew-hh.xml │ │ │ │ └── noise-ew-hv.xml │ │ │ ├── ew-hh.xml │ │ │ ├── ew-hv.xml │ │ │ └── rfi │ │ │ │ ├── rfi-ew-hh.xml │ │ │ │ └── rfi-ew-hv.xml │ │ ├── manifest.safe │ │ ├── measurement │ │ │ ├── ew-hh.tiff │ │ │ └── ew-hv.tiff │ │ ├── preview │ │ │ ├── icons │ │ │ │ └── logo.png │ │ │ ├── map-overlay.kml │ │ │ ├── product-preview.html │ │ │ └── quick-look.png │ │ ├── productInfo.json │ │ ├── report-20221130T072008.pdf │ │ └── support │ │ │ ├── s1-level-1-calibration.xsd │ │ │ ├── s1-level-1-measurement.xsd │ │ │ ├── s1-level-1-noise.xsd │ │ │ ├── s1-level-1-product.xsd │ │ │ ├── s1-level-1-quicklook.xsd │ │ │ ├── s1-level-1-rfi.xsd │ │ │ ├── s1-map-overlay.xsd │ │ │ ├── s1-object-types.xsd │ │ │ └── s1-product-preview.xsd │ ├── S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE │ │ ├── annotation │ │ │ ├── calibration │ │ │ │ ├── calibration-s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml │ │ │ │ ├── calibration-s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml │ │ │ │ ├── noise-s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml │ │ │ │ └── noise-s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml │ │ │ ├── s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml │ │ │ └── s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml │ │ ├── manifest.safe │ │ └── measurement │ │ │ ├── s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.tiff │ │ │ └── s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.tiff │ └── S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE │ │ ├── S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE-report-20250118T173149.pdf │ │ ├── annotation │ │ ├── calibration │ │ │ ├── calibration-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml │ │ │ ├── calibration-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml │ │ │ ├── noise-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml │ │ │ └── noise-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml │ │ ├── rfi │ │ │ ├── rfi-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml │ │ │ └── rfi-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml │ │ ├── s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml │ │ └── s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml │ │ ├── manifest.safe │ │ ├── measurement │ │ ├── s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.tiff │ │ └── s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.tiff │ │ ├── preview │ │ ├── icons │ │ │ └── logo.png │ │ ├── map-overlay.kml │ │ ├── product-preview.html │ │ ├── quick-look.png │ │ └── thumbnail.png │ │ └── support │ │ ├── s1-level-1-calibration.xsd │ │ ├── s1-level-1-measurement.xsd │ │ ├── s1-level-1-noise.xsd │ │ ├── s1-level-1-product.xsd │ │ ├── s1-level-1-quicklook.xsd │ │ ├── s1-level-1-rfi.xsd │ │ ├── s1-map-overlay.xsd │ │ ├── s1-object-types.xsd │ │ └── s1-product-preview.xsd ├── rtc │ ├── S1A_20200103_17RMJ_ASC │ │ ├── Gamma0_VH.vrt │ │ ├── Gamma0_VV.vrt │ │ ├── S1A_IW_GRDH_1SDV_20200103T233556_20200103T233621_030643_0382F7_C795 │ │ │ ├── manifest.safe │ │ │ └── productInfo.json │ │ ├── S1A_IW_GRDH_1SDV_20200103T233621_20200103T233646_030643_0382F7_2CFD │ │ │ ├── manifest.safe │ │ │ └── productInfo.json │ │ └── local_incident_angle.vrt │ ├── S1B_20161121_12SYJ_ASC │ │ ├── Gamma0_VH.vrt │ │ ├── Gamma0_VV.vrt │ │ ├── S1B_IW_GRDH_1SDV_20161121T010910_20161121T010939_003050_0052FC_EC22 │ │ │ ├── manifest.safe │ │ │ └── productInfo.json │ │ ├── S1B_IW_GRDH_1SDV_20161121T010939_20161121T011004_003050_0052FC_3426 │ │ │ ├── manifest.safe │ │ │ └── productInfo.json │ │ └── local_incident_angle.vrt │ └── readme.txt └── slc │ └── S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE │ ├── annotation │ ├── calibration │ │ ├── calibration-s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml │ │ ├── calibration-s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml │ │ ├── calibration-s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml │ │ ├── noise-s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml │ │ ├── noise-s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml │ │ └── noise-s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml │ ├── s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml │ ├── s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml │ └── s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml │ ├── manifest.safe │ ├── measurement │ ├── s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.tiff │ ├── s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.tiff │ └── s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.tiff │ └── preview │ ├── icons │ └── logo.png │ ├── map-overlay.kml │ ├── product-preview.html │ ├── quick-look.png │ └── thumbnail.png ├── grd ├── __init__.py ├── test_commands.py ├── test_metadata.py └── test_stac.py ├── rtc ├── __init__.py └── test_commands.py ├── slc ├── __init__.py ├── test_commands.py ├── test_metadata.py └── test_stac.py └── test_metadata_links.py /.codespellignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.github/PULL_REQUEST_TEMPLATE.MD -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sync-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.github/workflows/sync-template.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | PULL_REQUEST_TEMPLATE.MD 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/Dockerfile-dev -------------------------------------------------------------------------------- /docker/Dockerfile-script-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/Dockerfile-script-runner -------------------------------------------------------------------------------- /docker/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/build -------------------------------------------------------------------------------- /docker/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/cibuild -------------------------------------------------------------------------------- /docker/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/console -------------------------------------------------------------------------------- /docker/docs-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/docs-server -------------------------------------------------------------------------------- /docker/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/env -------------------------------------------------------------------------------- /docker/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/format -------------------------------------------------------------------------------- /docker/notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/notebook -------------------------------------------------------------------------------- /docker/pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/pull -------------------------------------------------------------------------------- /docker/run-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/run-script -------------------------------------------------------------------------------- /docker/stac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/stac -------------------------------------------------------------------------------- /docker/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker/test -------------------------------------------------------------------------------- /docker_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docker_env -------------------------------------------------------------------------------- /docs/installation_and_basic_usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/docs/installation_and_basic_usage.ipynb -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549.json -------------------------------------------------------------------------------- /examples/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13.json -------------------------------------------------------------------------------- /examples/grd/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/grd/collection.json -------------------------------------------------------------------------------- /examples/rtc/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/rtc/catalog.json -------------------------------------------------------------------------------- /examples/rtc/sentinel1-rtc-aws/2016/S1B_20161121_12SYJ_ASC/S1B_20161121_12SYJ_ASC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/rtc/sentinel1-rtc-aws/2016/S1B_20161121_12SYJ_ASC/S1B_20161121_12SYJ_ASC.json -------------------------------------------------------------------------------- /examples/rtc/sentinel1-rtc-aws/2016/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/rtc/sentinel1-rtc-aws/2016/catalog.json -------------------------------------------------------------------------------- /examples/rtc/sentinel1-rtc-aws/2020/S1A_20200103_17RMJ_ASC/S1A_20200103_17RMJ_ASC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/rtc/sentinel1-rtc-aws/2020/S1A_20200103_17RMJ_ASC/S1A_20200103_17RMJ_ASC.json -------------------------------------------------------------------------------- /examples/rtc/sentinel1-rtc-aws/2020/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/rtc/sentinel1-rtc-aws/2020/catalog.json -------------------------------------------------------------------------------- /examples/rtc/sentinel1-rtc-aws/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/rtc/sentinel1-rtc-aws/collection.json -------------------------------------------------------------------------------- /examples/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842.json -------------------------------------------------------------------------------- /examples/slc/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/examples/slc/collection.json -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /scripts/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/cibuild -------------------------------------------------------------------------------- /scripts/create_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/create_examples.py -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/notebook -------------------------------------------------------------------------------- /scripts/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/publish -------------------------------------------------------------------------------- /scripts/rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/rename -------------------------------------------------------------------------------- /scripts/stac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/stac -------------------------------------------------------------------------------- /scripts/stactools-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/stactools-version.py -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/scripts/update -------------------------------------------------------------------------------- /src/stactools/sentinel1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/__init__.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/bands.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/commands.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/constants.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/formats.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/grd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stactools/sentinel1/grd/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/grd/commands.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/grd/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/grd/constants.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/grd/product_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/grd/product_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/grd/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/grd/properties.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/grd/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/grd/stac.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/metadata_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/metadata_links.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/product_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/product_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/rtc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stactools/sentinel1/rtc/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/rtc/commands.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/rtc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/rtc/constants.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/rtc/rtc_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/rtc/rtc_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/rtc/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/rtc/stac.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/slc/commands.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/slc/constants.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/metadata_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/slc/metadata_links.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/product_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/slc/product_metadata.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/slc/properties.py -------------------------------------------------------------------------------- /src/stactools/sentinel1/slc/stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/src/stactools/sentinel1/slc/stac.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/calibration-ew-hh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/calibration-ew-hh.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/calibration-ew-hv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/calibration-ew-hv.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/noise-ew-hh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/noise-ew-hh.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/noise-ew-hv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/calibration/noise-ew-hv.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/ew-hh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/ew-hh.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/ew-hv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/ew-hv.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/rfi/rfi-ew-hh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/rfi/rfi-ew-hh.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/rfi/rfi-ew-hv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/annotation/rfi/rfi-ew-hv.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/measurement/ew-hh.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/measurement/ew-hv.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/icons/logo.png -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/map-overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/map-overlay.kml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/product-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/product-preview.html -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/quick-look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/preview/quick-look.png -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/productInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/productInfo.json -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/report-20221130T072008.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/report-20221130T072008.pdf -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-calibration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-calibration.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-measurement.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-measurement.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-noise.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-noise.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-product.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-product.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-quicklook.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-quicklook.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-rfi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-level-1-rfi.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-map-overlay.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-map-overlay.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-object-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-object-types.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-product-preview.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_EW_GRDM_1SDH_20221130T014342_20221130T014446_046117_058549_BB15/support/s1-product-preview.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/calibration-s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/calibration-s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/calibration-s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/calibration-s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/noise-s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/noise-s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/noise-s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/calibration/noise-s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/annotation/s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/measurement/s1a-iw-grd-vh-20210809t173953-20210809t174018-039156-049f13-002.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data-files/grd/S1A_IW_GRDH_1SDV_20210809T173953_20210809T174018_039156_049F13_6FF8.SAFE/measurement/s1a-iw-grd-vv-20210809t173953-20210809t174018-039156-049f13-001.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE-report-20250118T173149.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE-report-20250118T173149.pdf -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/calibration-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/calibration-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/calibration-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/calibration-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/noise-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/noise-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/noise-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/calibration/noise-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/rfi/rfi-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/rfi/rfi-s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/rfi/rfi-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/rfi/rfi-s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/annotation/s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.xml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/measurement/s1c-s4-grd-hh-20250118t171404-20250118t171421-000638-000538-001.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/measurement/s1c-s4-grd-hv-20250118t171404-20250118t171421-000638-000538-002.tiff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/icons/logo.png -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/map-overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/map-overlay.kml -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/product-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/product-preview.html -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/quick-look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/quick-look.png -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/preview/thumbnail.png -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-calibration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-calibration.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-measurement.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-measurement.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-noise.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-noise.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-product.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-product.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-quicklook.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-quicklook.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-rfi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-level-1-rfi.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-map-overlay.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-map-overlay.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-object-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-object-types.xsd -------------------------------------------------------------------------------- /tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-product-preview.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/grd/S1C_S4_GRDH_1SDH_20250118T171404_20250118T171421_000638_000538_4B8B.SAFE/support/s1-product-preview.xsd -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/Gamma0_VH.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/Gamma0_VH.vrt -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/Gamma0_VV.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/Gamma0_VV.vrt -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233556_20200103T233621_030643_0382F7_C795/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233556_20200103T233621_030643_0382F7_C795/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233556_20200103T233621_030643_0382F7_C795/productInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233556_20200103T233621_030643_0382F7_C795/productInfo.json -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233621_20200103T233646_030643_0382F7_2CFD/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233621_20200103T233646_030643_0382F7_2CFD/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233621_20200103T233646_030643_0382F7_2CFD/productInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/S1A_IW_GRDH_1SDV_20200103T233621_20200103T233646_030643_0382F7_2CFD/productInfo.json -------------------------------------------------------------------------------- /tests/data-files/rtc/S1A_20200103_17RMJ_ASC/local_incident_angle.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1A_20200103_17RMJ_ASC/local_incident_angle.vrt -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/Gamma0_VH.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/Gamma0_VH.vrt -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/Gamma0_VV.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/Gamma0_VV.vrt -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010910_20161121T010939_003050_0052FC_EC22/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010910_20161121T010939_003050_0052FC_EC22/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010910_20161121T010939_003050_0052FC_EC22/productInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010910_20161121T010939_003050_0052FC_EC22/productInfo.json -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010939_20161121T011004_003050_0052FC_3426/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010939_20161121T011004_003050_0052FC_3426/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010939_20161121T011004_003050_0052FC_3426/productInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/S1B_IW_GRDH_1SDV_20161121T010939_20161121T011004_003050_0052FC_3426/productInfo.json -------------------------------------------------------------------------------- /tests/data-files/rtc/S1B_20161121_12SYJ_ASC/local_incident_angle.vrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/S1B_20161121_12SYJ_ASC/local_incident_angle.vrt -------------------------------------------------------------------------------- /tests/data-files/rtc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/rtc/readme.txt -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/calibration-s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/calibration-s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/calibration-s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/calibration-s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/calibration-s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/calibration-s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/noise-s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/noise-s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/noise-s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/noise-s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/noise-s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/calibration/noise-s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/annotation/s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.xml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/manifest.safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/manifest.safe -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/measurement/s1a-iw1-slc-hh-20141031t095931-20141031t095956-003072-003842-001.tiff: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/measurement/s1a-iw2-slc-hh-20141031t095932-20141031t095957-003072-003842-002.tiff: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/measurement/s1a-iw3-slc-hh-20141031t095933-20141031t095958-003072-003842-003.tiff: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/icons/logo.png -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/map-overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/map-overlay.kml -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/product-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/product-preview.html -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/quick-look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/quick-look.png -------------------------------------------------------------------------------- /tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/data-files/slc/S1A_IW_SL1__1_SH_20141031T095929_20141031T100002_003072_003842_91FC.SAFE/preview/thumbnail.png -------------------------------------------------------------------------------- /tests/grd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/grd/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/grd/test_commands.py -------------------------------------------------------------------------------- /tests/grd/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/grd/test_metadata.py -------------------------------------------------------------------------------- /tests/grd/test_stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/grd/test_stac.py -------------------------------------------------------------------------------- /tests/rtc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/rtc/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/rtc/test_commands.py -------------------------------------------------------------------------------- /tests/slc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/slc/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/slc/test_commands.py -------------------------------------------------------------------------------- /tests/slc/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/slc/test_metadata.py -------------------------------------------------------------------------------- /tests/slc/test_stac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/slc/test_stac.py -------------------------------------------------------------------------------- /tests/test_metadata_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stactools-packages/sentinel1/HEAD/tests/test_metadata_links.py --------------------------------------------------------------------------------